📝 Added JSDoc to extractComicArchive method
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user