AiAssistant.tsx
2 days ago
App.tsx
2 days ago
BuilderSync.ts
2 days ago
ControlRenderer.tsx
2 days ago
HoverTip.tsx
2 days ago
Popover.tsx
2 days ago
PreviewBridge.ts
2 days ago
PreviewPane.tsx
2 days ago
constants.ts
2 days ago
cssVars.ts
2 days ago
globals.d.ts
2 days ago
index.tsx
2 days ago
panes.tsx
2 days ago
store.ts
2 days ago
style.scss
2 days ago
types.ts
2 days 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 |