/* 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 BdButton { "disabled": boolean; "href"?: string; "type": string; } interface MyComponent { /** * The first name */ "first": string; /** * The last name */ "last": string; /** * The middle name */ "middle": string; } } declare global { interface HTMLBdButtonElement extends Components.BdButton, HTMLStencilElement { } var HTMLBdButtonElement: { prototype: HTMLBdButtonElement; new (): HTMLBdButtonElement; }; interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement { } var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLElementTagNameMap { "bd-button": HTMLBdButtonElement; "my-component": HTMLMyComponentElement; } } declare namespace LocalJSX { interface BdButton { "disabled"?: boolean; "href"?: string; "type"?: string; } interface MyComponent { /** * The first name */ "first"?: string; /** * The last name */ "last"?: string; /** * The middle name */ "middle"?: string; } interface IntrinsicElements { "bd-button": BdButton; "my-component": MyComponent; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "bd-button": LocalJSX.BdButton & JSXBase.HTMLAttributes; "my-component": LocalJSX.MyComponent & JSXBase.HTMLAttributes; } } }