UNPKG

imdb-listimporter

Version:
13 lines (12 loc) 276 B
declare type ListTypes = "list" | "watchlist"; export interface MatchedUrl { matched: boolean; listType?: ListTypes; url?: string; } export interface ImdbUrlPattern { listType: ListTypes; exp: RegExp; converter: (input: string) => string; } export {};