filestash/public/assets/boot/ctrl_boot.d.ts
2023-11-27 20:58:54 +11:00

15 lines
242 B
TypeScript

export {};
interface IChromecast {
init: () => Promise<any>;
}
declare global {
interface Window {
env: string
LNG: object;
CONFIG: object;
overrides: object;
Chromecast: IChromecast;
}
}