(runtimeIndex: number | undefined)
| 15 | const currentRuntimeINdex = getCurrentRuntimeIndex(); |
| 16 | |
| 17 | const shouldUpdate = (runtimeIndex: number | undefined) => { |
| 18 | if (runtimeIndex === undefined) { |
| 19 | return true; |
| 20 | } |
| 21 | return compareRuntimes(currentRuntimeINdex, runtimeIndex) === 1; // 1 means the current is newer, 0 means the same, -1 means the resource's runtime is newer |
| 22 | }; |
| 23 | |
| 24 | class F6Navigation { |
| 25 | keydownHandler: (event: KeyboardEvent) => void; |
no test coverage detected
searching dependent graphs…