(deadline: number | undefined)
| 25 | * frame is immutable: entering a span creates a new frame; exiting restores |
| 26 | * the saved previous frame object. |
| 27 | * |
| 28 | * - `at`: absolute ms timestamp beyond which execution should not proceed. |
| 29 | * - `owner`: label of the span whose deadline is the EFFECTIVE one (i.e. the |
| 30 | * span that owns `at`). `undefined` for an unlabelled span. |
| 31 | * - `spans`: labels of all active spans, outermost first. Unlabelled spans |
| 32 | * contribute nothing. |
| 33 | */ |
| 34 | export interface DeadlineFrame { |
| 35 | at: number; |
| 36 | owner?: string; |
| 37 | spans: string[]; |
no outgoing calls
no test coverage detected