interface Parser {
    name: string;
    parse(content: string, filename: string): ParseResult;
}

Properties

Methods

Properties

name: string

Name of parser

Methods