UNPKG

ngx-favorite-pages

Version:
85 lines (84 loc) 2.29 kB
/* eslint-disable */ /* tslint:disable */ /** * This is an autogenerated file created by the Stencil compiler. * It contains typing information for all components that exist in this project. */ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime"; export namespace Components { interface FavoritePages { "apiUrl": string; "applicationId": string; "cultureCode": string; "pageId": any; "pageTitle": any; } interface MyComponent { /** * The first name */ "first": string; /** * The last name */ "last": string; /** * The middle name */ "middle": string; } } declare global { interface HTMLFavoritePagesElement extends Components.FavoritePages, HTMLStencilElement { } var HTMLFavoritePagesElement: { prototype: HTMLFavoritePagesElement; new (): HTMLFavoritePagesElement; }; interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement { } var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLElementTagNameMap { "favorite-pages": HTMLFavoritePagesElement; "my-component": HTMLMyComponentElement; } } declare namespace LocalJSX { interface FavoritePages { "apiUrl"?: string; "applicationId"?: string; "cultureCode"?: string; "pageId"?: any; "pageTitle"?: any; } interface MyComponent { /** * The first name */ "first"?: string; /** * The last name */ "last"?: string; /** * The middle name */ "middle"?: string; } interface IntrinsicElements { "favorite-pages": FavoritePages; "my-component": MyComponent; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "favorite-pages": LocalJSX.FavoritePages & JSXBase.HTMLAttributes<HTMLFavoritePagesElement>; "my-component": LocalJSX.MyComponent & JSXBase.HTMLAttributes<HTMLMyComponentElement>; } } }