/* 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.core'; export namespace Components { interface MyButton { 'name': string; } interface MyComponent { 'name': string; } interface MyInput { 'value': string; } } declare global { interface HTMLMyButtonElement extends Components.MyButton, HTMLStencilElement {} var HTMLMyButtonElement: { prototype: HTMLMyButtonElement; new (): HTMLMyButtonElement; }; interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement {} var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLMyInputElement extends Components.MyInput, HTMLStencilElement {} var HTMLMyInputElement: { prototype: HTMLMyInputElement; new (): HTMLMyInputElement; }; interface HTMLElementTagNameMap { 'my-button': HTMLMyButtonElement; 'my-component': HTMLMyComponentElement; 'my-input': HTMLMyInputElement; } } declare namespace LocalJSX { interface MyButton { 'name'?: string; 'onPress'?: (event: CustomEvent) => void; } interface MyComponent { 'name'?: string; } interface MyInput { 'onChanged'?: (event: CustomEvent) => void; 'value'?: string; } interface IntrinsicElements { 'my-button': MyButton; 'my-component': MyComponent; 'my-input': MyInput; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { 'my-button': LocalJSX.MyButton & JSXBase.HTMLAttributes; 'my-component': LocalJSX.MyComponent & JSXBase.HTMLAttributes; 'my-input': LocalJSX.MyInput & JSXBase.HTMLAttributes; } } }