t2-mapper/app/global.d.ts
2025-12-03 21:25:28 -08:00

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;
}
}