UNPKG

imdb-listimporter

Version:
13 lines (12 loc) 307 B
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 {};