UNPKG

angular-html-parser

Version:
18 lines (17 loc) 503 B
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 };