/
websites
/
test-project
/
node_modules
/
codelyzer
/
node_modules
/
@angular
/
compiler
/
src
/
ml_parser
/
Upload File
HOME
/** * @license * Copyright Google Inc. 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.io/license */ import { TokenizeOptions } from './lexer'; import { ParseTreeResult, Parser } from './parser'; export { ParseTreeResult, TreeError } from './parser'; export declare class HtmlParser extends Parser { constructor(); parse(source: string, url: string, options?: TokenizeOptions): ParseTreeResult; }