(thenable: Promise<unknown>)
| 51 | export interface IWaitUntil { |
| 52 | token: CancellationToken; |
| 53 | waitUntil(thenable: Promise<unknown>): void; |
| 54 | } |
| 55 | export type IWaitUntilData<T> = Omit<Omit<T, 'waitUntil'>, 'token'>; |
| 56 |
no outgoing calls
no test coverage detected