audible-api
Version:
A Node.js API for searching the audible website
13 lines • 834 B
TypeScript
import { Creator } from "../types";
export declare const cleanDescription: (description: string) => string;
export declare const stripDiacretics: (str: string) => string;
export declare const removeNonWordChars: (str: string) => string;
export declare const removeSpaces: (str: string) => string;
export declare const simplify: (str: string) => string;
export declare const fuzzyMatch: (str1: string, str2: string, checkIncludes?: boolean) => boolean;
export declare const cleanTitle: (title: string) => string;
export declare const getCopyrightYear: (copyright: string) => string;
export declare const checkAuthorOverlap: (authors1: Creator[], authors2: Creator[]) => boolean;
export declare const cleanUrl: (url: string) => string;
export declare const cleanNarratorUrl: (url: string) => string;
//# sourceMappingURL=string.d.ts.map