magmise/app/src/components.d.ts

51 lines
1.4 KiB
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/core/internal";
export namespace Components {
interface AppRoot {
}
interface WebConsole {
}
}
declare global {
interface HTMLAppRootElement extends Components.AppRoot, HTMLStencilElement {
}
var HTMLAppRootElement: {
prototype: HTMLAppRootElement;
new (): HTMLAppRootElement;
};
interface HTMLWebConsoleElement extends Components.WebConsole, HTMLStencilElement {
}
var HTMLWebConsoleElement: {
prototype: HTMLWebConsoleElement;
new (): HTMLWebConsoleElement;
};
interface HTMLElementTagNameMap {
"app-root": HTMLAppRootElement;
"web-console": HTMLWebConsoleElement;
}
}
declare namespace LocalJSX {
interface AppRoot {
}
interface WebConsole {
}
interface IntrinsicElements {
"app-root": AppRoot;
"web-console": WebConsole;
}
}
export { LocalJSX as JSX };
declare module "@stencil/core" {
export namespace JSX {
interface IntrinsicElements {
"app-root": LocalJSX.AppRoot & JSXBase.HTMLAttributes<HTMLAppRootElement>;
"web-console": LocalJSX.WebConsole & JSXBase.HTMLAttributes<HTMLWebConsoleElement>;
}
}
}