| 34 | type PDFValue = null | boolean | number | string | PDFValue[] | Ref | { [key: string]: PDFValue | undefined } |
| 35 | |
| 36 | interface PDFObject { |
| 37 | id: number |
| 38 | dict: Record<string, PDFValue> |
| 39 | stream: Uint8Array | null |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Measure text width in points |
nothing calls this directly
no outgoing calls
no test coverage detected