@codeperate/opgl-ui-library
Version:
Opengamela UI Library
55 lines (54 loc) • 1.75 kB
TypeScript
/* 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 OpglInput {
"props": JSXBase.InputHTMLAttributes<HTMLInputElement>;
}
interface OpglToggle {
"inputProps": JSXBase.InputHTMLAttributes<HTMLInputElement>;
}
}
declare global {
interface HTMLOpglInputElement extends Components.OpglInput, HTMLStencilElement {
}
var HTMLOpglInputElement: {
prototype: HTMLOpglInputElement;
new (): HTMLOpglInputElement;
};
interface HTMLOpglToggleElement extends Components.OpglToggle, HTMLStencilElement {
}
var HTMLOpglToggleElement: {
prototype: HTMLOpglToggleElement;
new (): HTMLOpglToggleElement;
};
interface HTMLElementTagNameMap {
"opgl-input": HTMLOpglInputElement;
"opgl-toggle": HTMLOpglToggleElement;
}
}
declare namespace LocalJSX {
interface OpglInput {
"props"?: JSXBase.InputHTMLAttributes<HTMLInputElement>;
}
interface OpglToggle {
"inputProps"?: JSXBase.InputHTMLAttributes<HTMLInputElement>;
}
interface IntrinsicElements {
"opgl-input": OpglInput;
"opgl-toggle": OpglToggle;
}
}
export { LocalJSX as JSX };
declare module "@stencil/core" {
export namespace JSX {
interface IntrinsicElements {
"opgl-input": LocalJSX.OpglInput & JSXBase.HTMLAttributes<HTMLOpglInputElement>;
"opgl-toggle": LocalJSX.OpglToggle & JSXBase.HTMLAttributes<HTMLOpglToggleElement>;
}
}
}