| 56 | } |
| 57 | |
| 58 | export interface ISubKernelArray { |
| 59 | [index: number]: |
| 60 | ((...args: ThreadKernelVariable[]) => ThreadFunctionResult) |
| 61 | | ((...args: any[]) => ThreadFunctionResult); |
| 62 | } |
| 63 | |
| 64 | export interface ISubKernelsResults { |
| 65 | [resultsLocation: string]: KernelOutput; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…