| 1 | import type { Options } from './options' |
| 2 | |
| 3 | export interface Request { |
| 4 | type: 'image' | 'text' |
| 5 | resolve?: (response: string) => void |
| 6 | reject?: (error: Error) => void |
| 7 | response: Promise<string> |
| 8 | } |
| 9 | |
| 10 | export interface InternalContext<T extends Node> { |
| 11 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…