/* 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 ChatMessage { 'author': string; 'chatId': string; 'side': string; } interface MyComponent { /** * The first name */ 'first': string; /** * The last name */ 'last': string; /** * The middle name */ 'middle': string; } } declare global { interface HTMLChatMessageElement extends Components.ChatMessage, HTMLStencilElement {} var HTMLChatMessageElement: { prototype: HTMLChatMessageElement; new (): HTMLChatMessageElement; }; interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement {} var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLElementTagNameMap { 'chat-message': HTMLChatMessageElement; 'my-component': HTMLMyComponentElement; } } declare namespace LocalJSX { interface ChatMessage extends JSXBase.HTMLAttributes { 'author'?: string; 'chatId'?: string; 'side'?: string; } interface MyComponent extends JSXBase.HTMLAttributes { /** * The first name */ 'first'?: string; /** * The last name */ 'last'?: string; /** * The middle name */ 'middle'?: string; } interface IntrinsicElements { 'chat-message': ChatMessage; 'my-component': MyComponent; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements extends LocalJSX.IntrinsicElements {} } }