forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.d.ts
More file actions
121 lines (119 loc) · 2.6 KB
/
core.d.ts
File metadata and controls
121 lines (119 loc) · 2.6 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/**
* This is an autogenerated file created by the Stencil compiler.
* DO NOT MODIFY IT MANUALLY
*/
export interface JsonDocs {
components: JsonDocsComponent[];
timestamp: string;
compiler: {
name: string;
version: string;
typescriptVersion: string;
};
}
export interface JsonDocsComponent {
dirPath?: string;
fileName?: string;
filePath?: string;
readmePath?: string;
usagesDir?: string;
encapsulation: 'shadow' | 'scoped' | 'none';
tag: string;
readme: string;
docs: string;
docsTags: JsonDocsTag[];
usage: JsonDocsUsage;
props: JsonDocsProp[];
methods: JsonDocsMethod[];
events: JsonDocsEvent[];
listeners: JsonDocsListener[];
styles: JsonDocsStyle[];
slots: JsonDocsSlot[];
parts: JsonDocsPart[];
dependents: string[];
dependencies: string[];
dependencyGraph: JsonDocsDependencyGraph;
deprecation?: string;
}
export interface JsonDocsDependencyGraph {
[tagName: string]: string[];
}
export interface JsonDocsTag {
name: string;
text?: string;
}
export interface JsonDocsValue {
value?: string;
type: string;
}
export interface JsonDocsUsage {
[key: string]: string;
}
export interface JsonDocsProp {
name: string;
type: string;
mutable: boolean;
attr?: string;
reflectToAttr: boolean;
docs: string;
docsTags: JsonDocsTag[];
default: string;
deprecation?: string;
values: JsonDocsValue[];
optional: boolean;
required: boolean;
}
export interface JsonDocsMethod {
name: string;
docs: string;
docsTags: JsonDocsTag[];
deprecation?: string;
signature: string;
returns: JsonDocsMethodReturn;
parameters: JsonDocMethodParameter[];
}
export interface JsonDocsMethodReturn {
type: string;
docs: string;
}
export interface JsonDocMethodParameter {
name: string;
type: string;
docs: string;
}
export interface JsonDocsEvent {
event: string;
bubbles: boolean;
cancelable: boolean;
composed: boolean;
docs: string;
docsTags: JsonDocsTag[];
deprecation?: string;
detail: string;
}
export interface JsonDocsStyle {
name: string;
docs: string;
annotation: string;
}
export interface JsonDocsListener {
event: string;
target?: string;
capture: boolean;
passive: boolean;
}
export interface JsonDocsSlot {
name: string;
docs: string;
}
export interface JsonDocsPart {
name: string;
docs: string;
}
export interface StyleDoc {
name: string;
docs: string;
annotation: 'prop';
}
declare const _default: JsonDocs;
export default _default;