nidus-sync/ts/global.d.ts

11 lines
156 B
TypeScript
Raw Normal View History

import * as bootstrap from "bootstrap";
declare global {
interface Window {
SSEManager: SSEManagerType;
bootstrap: typeof bootstrap;
}
}
export {};