| 15 | |
| 16 | declare global { |
| 17 | interface Window { |
| 18 | onCreateNew: (ext: string) => Promise<void>; |
| 19 | hideControlPanel?: () => void; |
| 20 | showControlPanel?: () => void; |
| 21 | DocsAPI: { |
| 22 | DocEditor: new (elementId: string, config: any) => any; |
| 23 | }; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | // Initialize events |
nothing calls this directly
no outgoing calls
no test coverage detected