| 61 | // globals |
| 62 | |
| 63 | declare interface Window { |
| 64 | |
| 65 | DataStore: DataStore; |
| 66 | CommandBar: CommandBar; |
| 67 | Toast: Toast; |
| 68 | Effect: Effect; |
| 69 | |
| 70 | Pengu: { |
| 71 | version: string |
| 72 | superPotato: boolean |
| 73 | plugins: string[] |
| 74 | isMac: boolean |
| 75 | }; |
| 76 | |
| 77 | os: { |
| 78 | name: 'win' | 'mac' |
| 79 | version: string |
| 80 | build: string |
| 81 | }; |
| 82 | |
| 83 | openDevTools: () => void; |
| 84 | openPluginsFolder: (subdir?: string) => void; |
| 85 | reloadClient: () => void; |
| 86 | restartClient: () => void; |
| 87 | getScriptPath: () => string | undefined; |
| 88 | |
| 89 | __llver: string; |
| 90 | } |
nothing calls this directly
no outgoing calls
no test coverage detected