mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 19:32:27 +08:00
15 lines
269 B
TypeScript
15 lines
269 B
TypeScript
interface Window {
|
|
chrome: any;
|
|
cast: any;
|
|
overrides: {
|
|
[key: string]: any;
|
|
"xdg-open"?: (mime: string) => void;
|
|
};
|
|
CONFIG: Config;
|
|
BEARER_TOKEN?: string;
|
|
}
|
|
|
|
interface Config {
|
|
[key: string]: any;
|
|
thumbnailer: string[];
|
|
} |