UNPKG

@ctrl/video-filename-parser

Version:
10 lines (9 loc) 349 B
import { type ParsedMatchCollection } from './common.js'; export interface SeasonPattern { name: string; regex: RegExp; stopOnNull?: boolean; parse: (match: RegExpExecArray, simpleTitle: string) => ParsedMatchCollection | null; } export declare const seasonPatterns: SeasonPattern[]; export declare const rejectedPatterns: RegExp[];