nidus-sync/ts/global.d.ts

10 lines
156 B
TypeScript

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