| 94 | type ExportType = 'png' | 'svg'; |
| 95 | |
| 96 | export interface InfographicHandle { |
| 97 | download: (type: ExportType, filename?: string) => Promise<void>; |
| 98 | } |
| 99 | |
| 100 | type InfographicProps = { |
| 101 | options: string | InfographicOptions; |
nothing calls this directly
no outgoing calls
no test coverage detected