mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
16 lines
242 B
TypeScript
16 lines
242 B
TypeScript
export {};
|
|
|
|
interface IChromecast {
|
|
init: () => Promise<any>;
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
env: string
|
|
LNG: object;
|
|
CONFIG: object;
|
|
overrides: object;
|
|
Chromecast: IChromecast;
|
|
}
|
|
}
|