| 16 | } |
| 17 | |
| 18 | export interface JsPdfPreview { |
| 19 | preview: (src: string | ArrayBuffer | Blob) => Promise<any>; |
| 20 | rerender: () => Promise<any>; |
| 21 | save: (fileName?: string) => void; |
| 22 | setOptions: (options: Options) => void; |
| 23 | setRequestOptions: (requestOptions?: any) => void; |
| 24 | destroy: ()=> void; |
| 25 | } |
| 26 | declare const jsPreviewPdf: { |
| 27 | init: (container: HTMLElement, options?: Options, requestOptions?: any) => JsPdfPreview; |
| 28 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected