queue/source/types.d.ts

9 lines
198 B
TypeScript
Raw Normal View History

2023-04-24 10:02:27 +00:00
// Export something so TypeScript doesn't see this file as an ambient module.
export {};
declare global {
2023-04-24 10:02:27 +00:00
const $browser: "chromium" | "firefox";
const $dev: boolean;
const $test: boolean;
}