/* 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 LinkImage { /** * The time string */ 'href': string; /** * The string that is using wheen resetting the timer */ 'src': string; } interface MyComponent { /** * The first name */ 'first': string; /** * The last name */ 'last': string; /** * The middle name */ 'middle': string; } interface StopWatch { /** * The string that is using wheen resetting the timer */ 'blankTime': string; 'reset': () => Promise; 'start': () => Promise; 'stop': () => Promise; /** * The time string */ 'time': string; 'toggle': () => Promise; } } declare global { interface HTMLLinkImageElement extends Components.LinkImage, HTMLStencilElement {} var HTMLLinkImageElement: { prototype: HTMLLinkImageElement; new (): HTMLLinkImageElement; }; interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement {} var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLStopWatchElement extends Components.StopWatch, HTMLStencilElement {} var HTMLStopWatchElement: { prototype: HTMLStopWatchElement; new (): HTMLStopWatchElement; }; interface HTMLElementTagNameMap { 'link-image': HTMLLinkImageElement; 'my-component': HTMLMyComponentElement; 'stop-watch': HTMLStopWatchElement; } } declare namespace LocalJSX { interface LinkImage extends JSXBase.HTMLAttributes { /** * The time string */ 'href'?: string; /** * The string that is using wheen resetting the timer */ 'src'?: string; } interface MyComponent extends JSXBase.HTMLAttributes { /** * The first name */ 'first'?: string; /** * The last name */ 'last'?: string; /** * The middle name */ 'middle'?: string; } interface StopWatch extends JSXBase.HTMLAttributes { /** * The string that is using wheen resetting the timer */ 'blankTime'?: string; /** * The time string */ 'time'?: string; } interface IntrinsicElements { 'link-image': LinkImage; 'my-component': MyComponent; 'stop-watch': StopWatch; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements extends LocalJSX.IntrinsicElements {} } }