first commit

This commit is contained in:
Bivekich
2025-06-26 06:59:59 +03:00
commit d44874775c
450 changed files with 76635 additions and 0 deletions

12
src/types/global.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
declare global {
interface Window {
WEBFLOW_INITIALIZED?: boolean;
Webflow?: {
ready?: () => void;
require?: (module: string) => any;
destroy?: () => void;
};
}
}
export {};