export interface File { get html(): string; get data(): { [key: string]: any; }; } export default interface Parser { get name(): string; parse(path: string): File; }