t2-mapper/app/global.d.ts
2025-12-29 20:03:13 -08:00

10 lines
255 B
TypeScript

import type { getMissionList, getMissionInfo } from "@/src/manifest";
declare global {
interface Window {
setMissionName?: (missionName: string) => void;
getMissionList?: typeof getMissionList;
getMissionInfo?: typeof getMissionInfo;
}
}