🔫 Added error interface for comic cover methods

This commit is contained in:
2021-04-19 11:45:29 -07:00
parent b53af0357b
commit e612eea7fd
2 changed files with 42 additions and 18 deletions

View File

@@ -39,3 +39,9 @@ export interface IExtractedComicBookCoverFile {
path: string;
fileSize: number;
}
export interface IExtractComicBookCoverErrorResponse {
message: string;
errorCode: string;
data: string;
}