| 1 | interface PrintOptions { |
| 2 | globalStyles: boolean |
| 3 | mediaPrint: boolean |
| 4 | stylesheet: string | string[] | null |
| 5 | noPrintSelector: string |
| 6 | iframe: boolean |
| 7 | append: string | null |
| 8 | prepend: string | null |
| 9 | manuallyCopyFormValues: boolean |
| 10 | deferred: Promise<void> |
| 11 | timeout: number |
| 12 | title: string | null |
| 13 | doctype: string |
| 14 | } |
| 15 | |
| 16 | export class Print { |
| 17 | private static defaultOptions: PrintOptions = { |
nothing calls this directly
no outgoing calls
no test coverage detected