11 lines
160 B
TypeScript
11 lines
160 B
TypeScript
import * as bootstrap from "bootstrap";
|
|
|
|
declare global {
|
|
interface Window {
|
|
Alpine: any;
|
|
SSEManager: any;
|
|
bootstrap: typeof bootstrap;
|
|
}
|
|
}
|
|
|
|
export {};
|