t2-mapper/app/global.d.ts

10 lines
255 B
TypeScript
Raw Permalink Normal View History

import type { getMissionList, getMissionInfo } from "@/src/manifest";
declare global {
interface Window {
2025-12-30 04:02:54 +00:00
setMissionName?: (missionName: string) => void;
getMissionList?: typeof getMissionList;
getMissionInfo?: typeof getMissionInfo;
}
}