elearning/Frontend-Learner/node_modules/comment-parser/es6/parser/source-parser.d.ts

8 lines
277 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import { Line, BlockMarkers } from '../primitives.js';
export interface Options {
startLine: number;
markers: BlockMarkers;
}
export type Parser = (source: string) => Line[] | null;
export default function getParser({ startLine, markers, }?: Partial<Options>): Parser;