| 4 | import { now } from './time.js' |
| 5 | |
| 6 | interface QueueItem { |
| 7 | method: string |
| 8 | args: any[] |
| 9 | resolve?: (value?: any) => void |
| 10 | } |
| 11 | |
| 12 | export class ApiProxy<TTarget extends DevtoolsPluginApi<any> = DevtoolsPluginApi<any>> { |
| 13 | target: TTarget | null |
nothing calls this directly
no outgoing calls
no test coverage detected