/* 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.core'; export namespace Components { interface MyComponent { /** * The first name */ 'first': string; /** * The last name */ 'last': string; /** * The middle name */ 'middle': string; } interface NeuCheckbox { 'ariaChecked': boolean; 'default': boolean; 'disabled': boolean; 'hideLabel': boolean; 'id': string; 'modifiers': string; 'objectData': Array; 'size': string; 'title': string; 'value': string; } } declare global { interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement {} var HTMLMyComponentElement: { prototype: HTMLMyComponentElement; new (): HTMLMyComponentElement; }; interface HTMLNeuCheckboxElement extends Components.NeuCheckbox, HTMLStencilElement {} var HTMLNeuCheckboxElement: { prototype: HTMLNeuCheckboxElement; new (): HTMLNeuCheckboxElement; }; interface HTMLElementTagNameMap { 'my-component': HTMLMyComponentElement; 'neu-checkbox': HTMLNeuCheckboxElement; } } declare namespace LocalJSX { interface MyComponent { /** * The first name */ 'first'?: string; /** * The last name */ 'last'?: string; /** * The middle name */ 'middle'?: string; } interface NeuCheckbox { 'ariaChecked'?: boolean; 'default'?: boolean; 'disabled'?: boolean; 'hideLabel'?: boolean; 'id'?: string; 'modifiers'?: string; 'objectData'?: Array; 'onOnChange'?: (event: CustomEvent) => void; 'size'?: string; 'title'?: string; 'value'?: string; } interface IntrinsicElements { 'my-component': MyComponent; 'neu-checkbox': NeuCheckbox; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { 'my-component': LocalJSX.MyComponent & JSXBase.HTMLAttributes; 'neu-checkbox': LocalJSX.NeuCheckbox & JSXBase.HTMLAttributes; } } }