| 12 | ] |
| 13 | |
| 14 | export interface TextOptions { |
| 15 | align?: 'left' | 'center' | 'right' |
| 16 | width?: number |
| 17 | color?: string |
| 18 | } |
| 19 | |
| 20 | export interface PageContext { |
| 21 | text(str: string, x: number, y: number, size: number, opts?: TextOptions): void |
nothing calls this directly
no outgoing calls
no test coverage detected