⌨️ Moved types to an npm module
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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) => {};
|
||||
|
||||
Reference in New Issue
Block a user