| 30 | | string; |
| 31 | |
| 32 | interface PDFExampleState { |
| 33 | page: number; |
| 34 | scale: number; |
| 35 | numberOfPages: number; |
| 36 | horizontal: boolean; |
| 37 | showsHorizontalScrollIndicator: boolean; |
| 38 | showsVerticalScrollIndicator: boolean; |
| 39 | width: number; |
| 40 | objectURL?: string; |
| 41 | blob?: Blob; |
| 42 | } |
| 43 | |
| 44 | export default class PDFExample extends React.Component< |
| 45 | Record<string, never>, |
nothing calls this directly
no outgoing calls
no test coverage detected