-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.d.ts
222 lines (222 loc) · 13.1 KB
/
template.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
module Template {
export var VERSION: string;
export var attrHooks: any;
export function merge(target: any, source: any): any;
export function toAttrs(attrs: any, prefix?: string): string;
export function text(...children: any[]): string;
export function tag(name: string, children?: any[]): string;
export function shortTag(name: string, atts?: any): string;
export function image(src: string, attrs?: any): string;
export function stylesheet(src: string, attrs?: any): string;
export function a(attrs: any, ...children: any[]): string;
export function a(...children: any[]): string;
export function abbr(attrs: any, ...children: any[]): string;
export function abbr(...children: any[]): string;
export function address(attrs: any, ...children: any[]): string;
export function address(...children: any[]): string;
export function area(attrs: any, ...children: any[]): string;
export function area(...children: any[]): string;
export function article(attrs: any, ...children: any[]): string;
export function article(...children: any[]): string;
export function aside(attrs: any, ...children: any[]): string;
export function aside(...children: any[]): string;
export function audio(attrs: any, ...children: any[]): string;
export function audio(...children: any[]): string;
export function b(attrs: any, ...children: any[]): string;
export function b(...children: any[]): string;
export function base(attrs: any, ...children: any[]): string;
export function base(...children: any[]): string;
export function bdi(attrs: any, ...children: any[]): string;
export function bdi(...children: any[]): string;
export function bdo(attrs: any, ...children: any[]): string;
export function bdo(...children: any[]): string;
export function blockquote(attrs: any, ...children: any[]): string;
export function blockquote(...children: any[]): string;
export function body(attrs: any, ...children: any[]): string;
export function body(...children: any[]): string;
export function button(attrs: any, ...children: any[]): string;
export function button(...children: any[]): string;
export function canvas(attrs: any, ...children: any[]): string;
export function canvas(...children: any[]): string;
export function caption(attrs: any, ...children: any[]): string;
export function caption(...children: any[]): string;
export function cite(attrs: any, ...children: any[]): string;
export function cite(...children: any[]): string;
export function code(attrs: any, ...children: any[]): string;
export function code(...children: any[]): string;
export function col(attrs: any, ...children: any[]): string;
export function col(...children: any[]): string;
export function colgroup(attrs: any, ...children: any[]): string;
export function colgroup(...children: any[]): string;
export function command(attrs: any, ...children: any[]): string;
export function command(...children: any[]): string;
export function data(attrs: any, ...children: any[]): string;
export function data(...children: any[]): string;
export function datalist(attrs: any, ...children: any[]): string;
export function datalist(...children: any[]): string;
export function dd(attrs: any, ...children: any[]): string;
export function dd(...children: any[]): string;
export function del(attrs: any, ...children: any[]): string;
export function del(...children: any[]): string;
export function details(attrs: any, ...children: any[]): string;
export function details(...children: any[]): string;
export function dfn(attrs: any, ...children: any[]): string;
export function dfn(...children: any[]): string;
export function div(attrs: any, ...children: any[]): string;
export function div(...children: any[]): string;
export function dl(attrs: any, ...children: any[]): string;
export function dl(...children: any[]): string;
export function dt(attrs: any, ...children: any[]): string;
export function dt(...children: any[]): string;
export function em(attrs: any, ...children: any[]): string;
export function em(...children: any[]): string;
export function embed(attrs: any, ...children: any[]): string;
export function embed(...children: any[]): string;
export function eventsource(attrs: any, ...children: any[]): string;
export function eventsource(...children: any[]): string;
export function fieldset(attrs: any, ...children: any[]): string;
export function fieldset(...children: any[]): string;
export function figcaption(attrs: any, ...children: any[]): string;
export function figcaption(...children: any[]): string;
export function figure(attrs: any, ...children: any[]): string;
export function figure(...children: any[]): string;
export function footer(attrs: any, ...children: any[]): string;
export function footer(...children: any[]): string;
export function form(attrs: any, ...children: any[]): string;
export function form(...children: any[]): string;
export function h1(attrs: any, ...children: any[]): string;
export function h1(...children: any[]): string;
export function h2(attrs: any, ...children: any[]): string;
export function h2(...children: any[]): string;
export function h3(attrs: any, ...children: any[]): string;
export function h3(...children: any[]): string;
export function h4(attrs: any, ...children: any[]): string;
export function h4(...children: any[]): string;
export function h5(attrs: any, ...children: any[]): string;
export function h5(...children: any[]): string;
export function h6(attrs: any, ...children: any[]): string;
export function h6(...children: any[]): string;
export function head(attrs: any, ...children: any[]): string;
export function head(...children: any[]): string;
export function header(attrs: any, ...children: any[]): string;
export function header(...children: any[]): string;
export function hgroup(attrs: any, ...children: any[]): string;
export function hgroup(...children: any[]): string;
export function html(attrs: any, ...children: any[]): string;
export function html(...children: any[]): string;
export function i(attrs: any, ...children: any[]): string;
export function i(...children: any[]): string;
export function iframe(attrs: any, ...children: any[]): string;
export function iframe(...children: any[]): string;
export function ins(attrs: any, ...children: any[]): string;
export function ins(...children: any[]): string;
export function kbd(attrs: any, ...children: any[]): string;
export function kbd(...children: any[]): string;
export function keygen(attrs: any, ...children: any[]): string;
export function keygen(...children: any[]): string;
export function label(attrs: any, ...children: any[]): string;
export function label(...children: any[]): string;
export function legend(attrs: any, ...children: any[]): string;
export function legend(...children: any[]): string;
export function li(attrs: any, ...children: any[]): string;
export function li(...children: any[]): string;
export function mark(attrs: any, ...children: any[]): string;
export function mark(...children: any[]): string;
export function map(attrs: any, ...children: any[]): string;
export function map(...children: any[]): string;
export function menu(attrs: any, ...children: any[]): string;
export function menu(...children: any[]): string;
export function meter(attrs: any, ...children: any[]): string;
export function meter(...children: any[]): string;
export function nav(attrs: any, ...children: any[]): string;
export function nav(...children: any[]): string;
export function noscript(attrs: any, ...children: any[]): string;
export function noscript(...children: any[]): string;
export function object(attrs: any, ...children: any[]): string;
export function object(...children: any[]): string;
export function ol(attrs: any, ...children: any[]): string;
export function ol(...children: any[]): string;
export function optgroup(attrs: any, ...children: any[]): string;
export function optgroup(...children: any[]): string;
export function option(attrs: any, ...children: any[]): string;
export function option(...children: any[]): string;
export function output(attrs: any, ...children: any[]): string;
export function output(...children: any[]): string;
export function p(attrs: any, ...children: any[]): string;
export function p(...children: any[]): string;
export function pre(attrs: any, ...children: any[]): string;
export function pre(...children: any[]): string;
export function progress(attrs: any, ...children: any[]): string;
export function progress(...children: any[]): string;
export function q(attrs: any, ...children: any[]): string;
export function q(...children: any[]): string;
export function ruby(attrs: any, ...children: any[]): string;
export function ruby(...children: any[]): string;
export function rp(attrs: any, ...children: any[]): string;
export function rp(...children: any[]): string;
export function rt(attrs: any, ...children: any[]): string;
export function rt(...children: any[]): string;
export function s(attrs: any, ...children: any[]): string;
export function s(...children: any[]): string;
export function samp(attrs: any, ...children: any[]): string;
export function samp(...children: any[]): string;
export function script(attrs: any, ...children: any[]): string;
export function script(...children: any[]): string;
export function section(attrs: any, ...children: any[]): string;
export function section(...children: any[]): string;
export function select(attrs: any, ...children: any[]): string;
export function select(...children: any[]): string;
export function small(attrs: any, ...children: any[]): string;
export function small(...children: any[]): string;
export function source(attrs: any, ...children: any[]): string;
export function source(...children: any[]): string;
export function span(attrs: any, ...children: any[]): string;
export function span(...children: any[]): string;
export function strong(attrs: any, ...children: any[]): string;
export function strong(...children: any[]): string;
export function style(attrs: any, ...children: any[]): string;
export function style(...children: any[]): string;
export function sub(attrs: any, ...children: any[]): string;
export function sub(...children: any[]): string;
export function summary(attrs: any, ...children: any[]): string;
export function summary(...children: any[]): string;
export function sup(attrs: any, ...children: any[]): string;
export function sup(...children: any[]): string;
export function table(attrs: any, ...children: any[]): string;
export function table(...children: any[]): string;
export function tbody(attrs: any, ...children: any[]): string;
export function tbody(...children: any[]): string;
export function td(attrs: any, ...children: any[]): string;
export function td(...children: any[]): string;
export function textarea(attrs: any, ...children: any[]): string;
export function textarea(...children: any[]): string;
export function tfoot(attrs: any, ...children: any[]): string;
export function tfoot(...children: any[]): string;
export function th(attrs: any, ...children: any[]): string;
export function th(...children: any[]): string;
export function thead(attrs: any, ...children: any[]): string;
export function thead(...children: any[]): string;
export function time(attrs: any, ...children: any[]): string;
export function time(...children: any[]): string;
export function title(attrs: any, ...children: any[]): string;
export function title(...children: any[]): string;
export function tr(attrs: any, ...children: any[]): string;
export function tr(...children: any[]): string;
export function track(attrs: any, ...children: any[]): string;
export function track(...children: any[]): string;
export function u(attrs: any, ...children: any[]): string;
export function u(...children: any[]): string;
export function ul(attrs: any, ...children: any[]): string;
export function ul(...children: any[]): string;
export function video(attrs: any, ...children: any[]): string;
export function video(...children: any[]): string;
export function wbr(attrs: any, ...children: any[]): string;
export function wbr(...children: any[]): string;
export function br(attrs?: any): string;
export function hr(attrs?: any): string;
export function img(attrs?: any): string;
export function input(attrs?: any): string;
export function link(attrs?: any): string;
export function meta(attrs?: any): string;
export function param(attrs?: any): string;
}