-
Notifications
You must be signed in to change notification settings - Fork 798
/
Copy pathcomponents.d.ts
37 lines (37 loc) · 993 Bytes
/
components.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* 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 TestCmp {
}
}
declare global {
interface HTMLTestCmpElement extends Components.TestCmp, HTMLStencilElement {
}
var HTMLTestCmpElement: {
prototype: HTMLTestCmpElement;
new (): HTMLTestCmpElement;
};
interface HTMLElementTagNameMap {
"test-cmp": HTMLTestCmpElement;
}
}
declare namespace LocalJSX {
interface TestCmp {
}
interface IntrinsicElements {
"test-cmp": TestCmp;
}
}
export { LocalJSX as JSX };
declare module "@stencil/core" {
export namespace JSX {
interface IntrinsicElements {
"test-cmp": LocalJSX.TestCmp & JSXBase.HTMLAttributes<HTMLTestCmpElement>;
}
}
}