| 24 | } |
| 25 | |
| 26 | interface WasmGallery { |
| 27 | list(): unknown[]; |
| 28 | listByCategory(category: string): unknown[]; |
| 29 | search(query: string): unknown[]; |
| 30 | get(id: string): unknown; |
| 31 | setActive(id: string): void; |
| 32 | getActive(): string | null; |
| 33 | count(): number; |
| 34 | getCategories(): Record<string, number>; |
| 35 | } |
| 36 | |
| 37 | interface WorkerRequest { |
| 38 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected