10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
import * as bootstrap from "bootstrap";
|
|
|
|
declare global {
|
|
interface Window {
|
|
SSEManager: SSEManagerType;
|
|
bootstrap: typeof bootstrap;
|
|
}
|
|
}
|
|
|
|
export {};
|