/* 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 MyComponent { /** * Enable Share */ 'enableCompare': boolean; /** * Enable Share */ 'enableShare': boolean; /** * Enable Share */ 'enableWishlist': boolean; 'feature': any; 'featureWithIconArray': Array; /** * The first name */ 'features': Array; /** * Product Image */ 'productImg': string; /** * Product share link */ 'productLink': string; /** * Product Name */ 'productName': string; /** * Local properties */ 'shareClicked': boolean; } } declare global { interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement {} var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLElementTagNameMap { 'my-component': HTMLMyComponentElement; } } declare namespace LocalJSX { interface MyComponent { /** * Enable Share */ 'enableCompare'?: boolean; /** * Enable Share */ 'enableShare'?: boolean; /** * Enable Share */ 'enableWishlist'?: boolean; 'feature'?: any; 'featureWithIconArray'?: Array; /** * The first name */ 'features'?: Array; /** * Product Image */ 'productImg'?: string; /** * Product share link */ 'productLink'?: string; /** * Product Name */ 'productName'?: string; /** * Local properties */ 'shareClicked'?: boolean; } interface IntrinsicElements { 'my-component': MyComponent; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { 'my-component': LocalJSX.MyComponent & JSXBase.HTMLAttributes; } } }