AiAssistant.tsx
1 week ago
App.tsx
1 week ago
BuilderSync.ts
1 week ago
ControlRenderer.tsx
1 week ago
HoverTip.tsx
1 week ago
Popover.tsx
1 week ago
PreviewBridge.ts
1 week ago
PreviewPane.tsx
1 week ago
constants.ts
1 week ago
cssVars.ts
1 week ago
globals.d.ts
1 week ago
index.tsx
1 week ago
panes.tsx
1 week ago
store.ts
1 week ago
style.scss
1 week ago
types.ts
1 week ago
globals.d.ts
16 lines
| 1 | /** |
| 2 | * Ambient declarations for the Style Customizer v2 panel. |
| 3 | * (Babel strips types at build; these only satisfy the TS language service.) |
| 4 | */ |
| 5 | declare module '*.scss'; |
| 6 | declare module '*.css'; |
| 7 | |
| 8 | interface Window { |
| 9 | wp?: { |
| 10 | apiFetch?: ( args: any ) => Promise< any >; |
| 11 | i18n?: { __: ( text: string, domain?: string ) => string }; |
| 12 | media?: any; |
| 13 | }; |
| 14 | evfStyleV2?: import('./types').BootstrapSettings; |
| 15 | } |
| 16 |