/* 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 ChapelVideo { "autoplay": boolean; "bg": string | undefined; "controls": boolean; } interface MyComponent { /** * The first name */ "first": string; /** * The last name */ "last": string; /** * The middle name */ "middle": string; } } declare global { interface HTMLChapelVideoElement extends Components.ChapelVideo, HTMLStencilElement { } var HTMLChapelVideoElement: { prototype: HTMLChapelVideoElement; new (): HTMLChapelVideoElement; }; interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement { } var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLElementTagNameMap { "chapel-video": HTMLChapelVideoElement; "my-component": HTMLMyComponentElement; } } declare namespace LocalJSX { interface ChapelVideo { "autoplay"?: boolean; "bg"?: string | undefined; "controls"?: boolean; } interface MyComponent { /** * The first name */ "first"?: string; /** * The last name */ "last"?: string; /** * The middle name */ "middle"?: string; } interface IntrinsicElements { "chapel-video": ChapelVideo; "my-component": MyComponent; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "chapel-video": LocalJSX.ChapelVideo & JSXBase.HTMLAttributes; "my-component": LocalJSX.MyComponent & JSXBase.HTMLAttributes; } } }