/* 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 CoreButton { /** * Is the button disabled */ "disabled": boolean; } interface CoreNav { /** * The company name */ "companyName": string; /** * The company logo */ "logoUrl": string; } interface MyComponent { /** * The first name */ "first": string; /** * The last name */ "last": string; /** * The middle name */ "middle": string; } } declare global { interface HTMLCoreButtonElement extends Components.CoreButton, HTMLStencilElement { } var HTMLCoreButtonElement: { prototype: HTMLCoreButtonElement; new (): HTMLCoreButtonElement; }; interface HTMLCoreNavElement extends Components.CoreNav, HTMLStencilElement { } var HTMLCoreNavElement: { prototype: HTMLCoreNavElement; new (): HTMLCoreNavElement; }; interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement { } var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLElementTagNameMap { "core-button": HTMLCoreButtonElement; "core-nav": HTMLCoreNavElement; "my-component": HTMLMyComponentElement; } } declare namespace LocalJSX { interface CoreButton { /** * Is the button disabled */ "disabled"?: boolean; } interface CoreNav { /** * The company name */ "companyName"?: string; /** * The company logo */ "logoUrl"?: string; } interface MyComponent { /** * The first name */ "first"?: string; /** * The last name */ "last"?: string; /** * The middle name */ "middle"?: string; } interface IntrinsicElements { "core-button": CoreButton; "core-nav": CoreNav; "my-component": MyComponent; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "core-button": LocalJSX.CoreButton & JSXBase.HTMLAttributes; "core-nav": LocalJSX.CoreNav & JSXBase.HTMLAttributes; "my-component": LocalJSX.MyComponent & JSXBase.HTMLAttributes; } } }