12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
declare global {
|
|
interface Window {
|
|
WEBFLOW_INITIALIZED?: boolean;
|
|
Webflow?: {
|
|
ready?: () => void;
|
|
require?: (module: string) => any;
|
|
destroy?: () => void;
|
|
};
|
|
}
|
|
}
|
|
|
|
export {};
|