blob: 75667a19c98e392690b4c4f3a3ccf06095bead67 [file] [log] [blame]
import { Line, BlockMarkers } from '../primitives';
export interface Options {
startLine: number;
markers: BlockMarkers;
}
export declare type Parser = (source: string) => Line[] | null;
export default function getParser({ startLine, markers, }?: Partial<Options>): Parser;