| 12 | import { applyPendingCompressionDurations } from "./timing" |
| 13 | |
| 14 | interface RunContext { |
| 15 | ask(input: { |
| 16 | permission: string |
| 17 | patterns: string[] |
| 18 | always: string[] |
| 19 | metadata: Record<string, unknown> |
| 20 | }): Promise<void> |
| 21 | metadata(input: { title: string }): void |
| 22 | sessionID: string |
| 23 | } |
| 24 | |
| 25 | export interface NotificationEntry { |
| 26 | blockId: number |
no outgoing calls
no test coverage detected