mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-20 04:35:05 +00:00
11 lines
313 B
TypeScript
11 lines
313 B
TypeScript
import type { Dispatch, SetStateAction } from "react";
|
|
import type { getMissionList, getMissionInfo } from "@/src/manifest";
|
|
|
|
declare global {
|
|
interface Window {
|
|
setMissionName?: Dispatch<SetStateAction<string>>;
|
|
getMissionList?: typeof getMissionList;
|
|
getMissionInfo?: typeof getMissionInfo;
|
|
}
|
|
}
|