mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-08 09:23:09 +01:00
13 lines
No EOL
230 B
TypeScript
13 lines
No EOL
230 B
TypeScript
interface Window {
|
|
chrome: object;
|
|
overrides: {
|
|
[key: string]: any;
|
|
"xdg-open"?: (mime: string) => void;
|
|
};
|
|
CONFIG: Config;
|
|
}
|
|
|
|
interface Config {
|
|
[key: string]: any;
|
|
thumbnailer: string[];
|
|
} |