imdb-listimporter
Version:
Import lists from IMDb.
13 lines (12 loc) • 307 B
TypeScript
import { Keys } from "./film.js";
export interface ListVariant {
header: string[];
version: string;
mapper: KeyMap[];
}
export declare type PossibleReturns = number | Date | string[] | null;
interface KeyMap {
localKey: Keys;
converter?: (input: string) => PossibleReturns;
}
export {};