angular-html-parser
Version:
A HTML parser extracted from Angular with some modifications
18 lines (17 loc) • 503 B
text/typescript
import { ParseError } from "../parse_util.mjs";
import { Node } from "./ast.mjs";
//#region ../compiler/src/ml_parser/parser.d.ts
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
declare class ParseTreeResult {
rootNodes: Node[];
errors: ParseError[];
constructor(rootNodes: Node[], errors: ParseError[]);
}
//#endregion
export { ParseTreeResult };