queue/source/types.d.ts

14 lines
239 B
TypeScript
Raw Normal View History

// TypeScript fix to make it see this file as a module.
export {};
type HollloQueue = {
dumpBackup: () => Promise<void>;
dumpSettings: () => Promise<void>;
};
declare global {
interface Window {
HollloQueue: HollloQueue;
}
}