html_info.d.ts 878 Bytes
Newer Older
jatuporn Tonggasem's avatar
jatuporn Tonggasem committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
export declare function elementNames(): string[];
export declare function attributeNames(element: string): string[];
export declare function attributeType(element: string, attribute: string): string | string[] | undefined;
export declare class SchemaInformation {
    schema: {
        [element: string]: {
            [property: string]: string;
        };
    };
    constructor();
    allKnownElements(): string[];
    eventsOf(elementName: string): string[];
    propertiesOf(elementName: string): string[];
    typeOf(elementName: string, property: string): string;
    private static _instance;
    static readonly instance: SchemaInformation;
}
export declare function eventNames(elementName: string): string[];
export declare function propertyNames(elementName: string): string[];
export declare function propertyType(elementName: string, propertyName: string): string;