| 50 | } |
| 51 | |
| 52 | export interface ISubKernelObject { |
| 53 | [targetLocation: string]: |
| 54 | ((...args: ThreadKernelVariable[]) => ThreadFunctionResult) |
| 55 | | ((...args: any[]) => ThreadFunctionResult); |
| 56 | } |
| 57 | |
| 58 | export interface ISubKernelArray { |
| 59 | [index: number]: |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…