📝 Added JSDoc to extractComicArchive method

This commit is contained in:
2022-11-24 21:51:49 -08:00
parent ef5af01e33
commit a15168a6be

View File

@@ -253,7 +253,13 @@ export const fetchComicVineMatches =
});
};
export const extractComicArchive = (path: string) => async (dispatch) => {
/**
* This method is a proxy to `uncompressFullArchive` which uncompresses complete `rar` or `zip` archives
* @param {string} path The path to the compressed archive
* @param {any} options Options object
* @returns {any}
*/
export const extractComicArchive = (path: string, options: any) => async (dispatch) => {
const comicBookPages: string[] = [];
dispatch({
type: IMS_COMIC_BOOK_ARCHIVE_EXTRACTION_CALL_IN_PROGRESS,