mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-31 04:43:34 +01:00
15 lines
242 B
TypeScript
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;
|
|
}
|
|
}
|