elearning/Frontend-Learner/node_modules/parse-statements/index.d.ts

7 lines
357 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import type { Options, Parse } from './types';
/**
* Creates parse function by comments and statements.
*/
export declare const createParseFunction: <Context>(options: Options<Context>) => Parse<Context>;
export type { Comment, CommentPair, OnCommentError, OnCommentParse, OnGlobalError, OnParse, Options, Parse, ParsedToken, Statement, } from './types';