UNPKG

subs-cli

Version:

A full featured, easy to use, CLI app to download subtitles from opensubtitles.org

24 lines (23 loc) 461 B
export interface ISubInfo { url: string; langcode: string; filename: string; format: string; } interface ISubSearchResult { [key: string]: ISubInfo; } export interface IOpenSubtitles { search(options: { filename?: string; path?: string; sublanguageid?: string; gzip?: boolean; }): ISubSearchResult; } export interface ILanguage { name: string; alpha2: string; alpha3: string; } export {};