/* 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 './stencil.core'; export namespace Components { interface MyComponent { /** * The first name */ 'first': string; /** * The last name */ 'last': string; /** * The middle name */ 'middle': string; } interface MyComponentAttributes extends StencilHTMLAttributes { /** * The first name */ 'first'?: string; /** * The last name */ 'last'?: string; /** * The middle name */ 'middle'?: string; } interface UcStockPrice {} interface UcStockPriceAttributes extends StencilHTMLAttributes {} } declare global { interface StencilElementInterfaces { 'MyComponent': Components.MyComponent; 'UcStockPrice': Components.UcStockPrice; } interface StencilIntrinsicElements { 'my-component': Components.MyComponentAttributes; 'uc-stock-price': Components.UcStockPriceAttributes; } interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement {} var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLUcStockPriceElement extends Components.UcStockPrice, HTMLStencilElement {} var HTMLUcStockPriceElement: { prototype: HTMLUcStockPriceElement; new (): HTMLUcStockPriceElement; }; interface HTMLElementTagNameMap { 'my-component': HTMLMyComponentElement 'uc-stock-price': HTMLUcStockPriceElement } interface ElementTagNameMap { 'my-component': HTMLMyComponentElement; 'uc-stock-price': HTMLUcStockPriceElement; } }