1
Fork 0
tildes-reextended/source/types.d.ts

16 lines
354 B
TypeScript
Raw Normal View History

2023-06-23 10:52:03 +00:00
// Export something so TypeScript doesn't see this file as an ambient module.
export {};
declare global {
2023-06-23 10:52:03 +00:00
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
interface Window {
TildesReExtended: {
debug: boolean;
};
}
2023-06-23 10:52:03 +00:00
const $browser: "chromium" | "firefox";
const $dev: boolean;
const $test: boolean;
}