| 5 | export type HintCallback = () => any; |
| 6 | |
| 7 | export class HintSequencePlayer implements IHintPlayer { |
| 8 | play(): void; |
| 9 | add(...hints: HintCallback[]):void; |
| 10 | remove(...hints: HintCallback[]):void; |
| 11 | clear(): void; |
| 12 | } |
| 13 | |
| 14 | export class IdleTimer |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected