-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomponents.d.ts
82 lines (64 loc) · 2.01 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
* This is an autogenerated file created by the Stencil compiler.
* It contains typing information for all components that exist in this project.
*/
/* tslint:disable */
import '@stencil/core';
import '@ionic/core';
import 'ionicons';
export namespace Components {
interface AppHome {}
interface AppHomeAttributes extends StencilHTMLAttributes {}
interface AppProfile {
'name': string;
}
interface AppProfileAttributes extends StencilHTMLAttributes {
'name'?: string;
}
interface AppRoot {}
interface AppRootAttributes extends StencilHTMLAttributes {}
}
declare global {
interface StencilElementInterfaces {
'AppHome': Components.AppHome;
'AppProfile': Components.AppProfile;
'AppRoot': Components.AppRoot;
}
interface StencilIntrinsicElements {
'app-home': Components.AppHomeAttributes;
'app-profile': Components.AppProfileAttributes;
'app-root': Components.AppRootAttributes;
}
interface HTMLAppHomeElement extends Components.AppHome, HTMLStencilElement {}
var HTMLAppHomeElement: {
prototype: HTMLAppHomeElement;
new (): HTMLAppHomeElement;
};
interface HTMLAppProfileElement extends Components.AppProfile, HTMLStencilElement {}
var HTMLAppProfileElement: {
prototype: HTMLAppProfileElement;
new (): HTMLAppProfileElement;
};
interface HTMLAppRootElement extends Components.AppRoot, HTMLStencilElement {}
var HTMLAppRootElement: {
prototype: HTMLAppRootElement;
new (): HTMLAppRootElement;
};
interface HTMLElementTagNameMap {
'app-home': HTMLAppHomeElement
'app-profile': HTMLAppProfileElement
'app-root': HTMLAppRootElement
}
interface ElementTagNameMap {
'app-home': HTMLAppHomeElement;
'app-profile': HTMLAppProfileElement;
'app-root': HTMLAppRootElement;
}
export namespace JSX {
export interface Element {}
export interface IntrinsicElements extends StencilIntrinsicElements {
[tagName: string]: any;
}
}
export interface HTMLAttributes extends StencilHTMLAttributes {}
}