| 10 | import PlaylistsData from "./data/PlaylistsData" |
| 11 | |
| 12 | interface PlaylistsExporterProps extends WithTranslation { |
| 13 | accessToken: string |
| 14 | playlistsData: PlaylistsData |
| 15 | searchQuery: string |
| 16 | config: any |
| 17 | onPlaylistExportStarted: (playlistName: string, doneCount: number) => void |
| 18 | onPlaylistsExportDone: () => void |
| 19 | } |
| 20 | |
| 21 | // Handles exporting all playlist data as a zip file |
| 22 | class PlaylistsExporter extends React.Component<PlaylistsExporterProps> { |
nothing calls this directly
no outgoing calls
no test coverage detected