UNPKG

1.05 kBTypeScriptView Raw
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 */
8/// <amd-module name="@angular/language-service/src/html_info" />
9export declare function elementNames(): string[];
10export declare function attributeNames(element: string): string[];
11export declare function attributeType(element: string, attribute: string): string | string[] | undefined;
12export declare class SchemaInformation {
13 schema: {
14 [element: string]: {
15 [property: string]: string;
16 };
17 };
18 constructor();
19 allKnownElements(): string[];
20 eventsOf(elementName: string): string[];
21 propertiesOf(elementName: string): string[];
22 typeOf(elementName: string, property: string): string;
23 private static _instance;
24 static get instance(): SchemaInformation;
25}
26export declare function eventNames(elementName: string): string[];
27export declare function propertyNames(elementName: string): string[];