You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
336 B

import { Formatter } from './Formatter';
import { Parser } from './Parser';
export declare class MetroParser extends Parser {
formatter: Formatter;
private isCollectingMetroError;
private metroError;
constructor(formatter: Formatter);
parse(text: string): void | string;
checkMetroError(text: string): string;
}