UNPKG

eiam-favorite-pages

Version:

Stencil Component Starter

85 lines (84 loc) 2.35 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 EiamFavoritePages { "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 HTMLEiamFavoritePagesElement extends Components.EiamFavoritePages, HTMLStencilElement { } var HTMLEiamFavoritePagesElement: { prototype: HTMLEiamFavoritePagesElement; new (): HTMLEiamFavoritePagesElement; }; interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement { } var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLElementTagNameMap { "eiam-favorite-pages": HTMLEiamFavoritePagesElement; "my-component": HTMLMyComponentElement; } } declare namespace LocalJSX { interface EiamFavoritePages { "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 { "eiam-favorite-pages": EiamFavoritePages; "my-component": MyComponent; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "eiam-favorite-pages": LocalJSX.EiamFavoritePages & JSXBase.HTMLAttributes<HTMLEiamFavoritePagesElement>; "my-component": LocalJSX.MyComponent & JSXBase.HTMLAttributes<HTMLMyComponentElement>; } } }