angular-estree-parser
Version:
A parser that converts Angular source code into an ESTree-compatible form
14 lines (13 loc) • 671 B
TypeScript
export declare const parseBinding: (text: string) => import("./types.js").NGNode & {
comments: import("./types.js").CommentLine[];
};
export declare const parseSimpleBinding: (text: string) => import("./types.js").NGNode & {
comments: import("./types.js").CommentLine[];
};
export declare const parseInterpolationExpression: (text: string) => import("./types.js").NGNode & {
comments: import("./types.js").CommentLine[];
};
export declare const parseAction: (text: string) => import("./types.js").NGNode & {
comments: import("./types.js").CommentLine[];
};
export declare const parseTemplateBindings: (text: string) => import("./types.js").NGMicrosyntax;