mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-02-21 15:43:47 +00:00
9 lines
255 B
TypeScript
9 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;
|
|
}
|
|
}
|