/** * Signature for the output of the exam parsers */ export interface IParserLine { lineNo: number; elementCount: number; items: string[]; toArray(): string[] | null; }