| 236 | } |
| 237 | |
| 238 | export interface Probe<Input = void, Signal = unknown> { |
| 239 | readonly dimension: string; |
| 240 | run(input: Input, ctx: ProbeContext): Promise<ProbeResult<Signal>>; |
| 241 | } |
| 242 | |
| 243 | export interface WriteOutcome { |
| 244 | previousState: State | null; |
no outgoing calls
no test coverage detected
searching dependent graphs…