mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-19 12:14:47 +00:00
10 lines
255 B
TypeScript
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;
|
|
}
|
|
}
|