| 58 | type listenerMap = Map<string, Set<(...args: any) => any>>; |
| 59 | |
| 60 | interface DeckyRequestInit extends RequestInit { |
| 61 | excludedHeaders: string[]; |
| 62 | } |
| 63 | |
| 64 | const callPluginMethod = DeckyBackend.callable<[pluginName: string, method: string, ...args: any], any>( |
| 65 | 'loader/call_plugin_method', |
nothing calls this directly
no outgoing calls
no test coverage detected