⌨️ Moved types to an npm module

This commit is contained in:
2021-06-15 21:46:13 -07:00
parent 22a5a84762
commit b801ce7eb3
13 changed files with 51 additions and 146 deletions

View File

@@ -1,16 +0,0 @@
export interface IFolderResponse {
data: Array<IFolderData>;
}
export interface IComicVineSearchMatch {
description: string;
id: number;
volumes: string;
}
export interface IFolderData {
name: string;
extension: string;
containedIn: string;
isFile: boolean;
isLink: boolean;
}

View File

@@ -25,11 +25,8 @@ SOFTWARE.
*/
import _ from "lodash";
import { IFolderData } from "../interfaces/comicinfo.interfaces";
import { IFolderData } from "threetwo-ui-typings";
import stringSimilarity from "string-similarity";
import { logger } from "../utils/log.utils";
export const autoMatcher = (query, matches) => {
}
export const autoMatcher = (query, matches) => {};