source: trip-planner-front/node_modules/@angular/compiler/src/template_parser/template_preparser.d.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 745 bytes
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import * as html from '../ml_parser/ast';
9export declare function preparseElement(ast: html.Element): PreparsedElement;
10export declare enum PreparsedElementType {
11 NG_CONTENT = 0,
12 STYLE = 1,
13 STYLESHEET = 2,
14 SCRIPT = 3,
15 OTHER = 4
16}
17export declare class PreparsedElement {
18 type: PreparsedElementType;
19 selectAttr: string;
20 hrefAttr: string;
21 nonBindable: boolean;
22 projectAs: string;
23 constructor(type: PreparsedElementType, selectAttr: string, hrefAttr: string, nonBindable: boolean, projectAs: string);
24}
Note: See TracBrowser for help on using the repository browser.