pareto-static-html 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/dist/globals.d.ts +26 -0
  2. package/dist/globals.js +2 -0
  3. package/dist/implementation/algorithms/transformations/html/fountain_pen.d.ts +5 -0
  4. package/dist/implementation/algorithms/transformations/html/fountain_pen.js +269 -0
  5. package/dist/implementation/generated/pareto/generic/parse/ast.d.ts +10 -0
  6. package/dist/implementation/generated/pareto/generic/parse/ast.js +245 -0
  7. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +13 -0
  8. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +50 -0
  9. package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +6 -0
  10. package/dist/implementation/generated/pareto/generic/parse/parse.js +66 -0
  11. package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +40 -0
  12. package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +109 -0
  13. package/dist/implementation/generated/pareto/generic/parse/token.d.ts +9 -0
  14. package/dist/implementation/generated/pareto/generic/parse/token.js +519 -0
  15. package/dist/implementation/generated/pareto/generic/resolve.d.ts +109 -0
  16. package/dist/implementation/generated/pareto/generic/resolve.js +276 -0
  17. package/dist/implementation/generated/pareto/generic/serialize.d.ts +4 -0
  18. package/dist/implementation/generated/pareto/generic/serialize.js +93 -0
  19. package/dist/implementation/generated/pareto/generic/unmarshall.d.ts +42 -0
  20. package/dist/implementation/generated/pareto/generic/unmarshall.js +247 -0
  21. package/dist/implementation/generated/pareto/schemas/static-html/deserialize.d.ts +5 -0
  22. package/dist/implementation/generated/pareto/schemas/static-html/deserialize.js +36 -0
  23. package/dist/implementation/generated/pareto/schemas/static-html/marshall.d.ts +5 -0
  24. package/dist/implementation/generated/pareto/schemas/static-html/marshall.js +264 -0
  25. package/dist/implementation/generated/pareto/schemas/static-html/serialize.d.ts +5 -0
  26. package/dist/implementation/generated/pareto/schemas/static-html/serialize.js +45 -0
  27. package/dist/implementation/generated/pareto/schemas/static-html/unmarshall.d.ts +5 -0
  28. package/dist/implementation/generated/pareto/schemas/static-html/unmarshall.js +298 -0
  29. package/dist/interface/algorithms/transformations/html/fountain_pen.d.ts +7 -0
  30. package/dist/interface/algorithms/transformations/html/fountain_pen.js +3 -0
  31. package/dist/interface/generated/pareto/core/astn_source.d.ts +123 -0
  32. package/dist/interface/generated/pareto/core/astn_source.js +3 -0
  33. package/dist/interface/generated/pareto/core/astn_target.d.ts +186 -0
  34. package/dist/interface/generated/pareto/core/astn_target.js +3 -0
  35. package/dist/interface/generated/pareto/core/parse_result.d.ts +25 -0
  36. package/dist/interface/generated/pareto/core/parse_result.js +3 -0
  37. package/dist/interface/generated/pareto/core/resolve.d.ts +11 -0
  38. package/dist/interface/generated/pareto/core/resolve.js +3 -0
  39. package/dist/interface/generated/pareto/core/resolved.d.ts +117 -0
  40. package/dist/interface/generated/pareto/core/resolved.js +3 -0
  41. package/dist/interface/generated/pareto/core/token.d.ts +49 -0
  42. package/dist/interface/generated/pareto/core/token.js +3 -0
  43. package/dist/interface/generated/pareto/core/unconstrained.d.ts +19 -0
  44. package/dist/interface/generated/pareto/core/unconstrained.js +3 -0
  45. package/dist/interface/generated/pareto/core/unresolved.d.ts +181 -0
  46. package/dist/interface/generated/pareto/core/unresolved.js +3 -0
  47. package/dist/interface/generated/pareto/schemas/static-html/data_types/resolve.d.ts +1 -0
  48. package/dist/interface/generated/pareto/schemas/static-html/data_types/resolve.js +7 -0
  49. package/dist/interface/generated/pareto/schemas/static-html/data_types/source.d.ts +951 -0
  50. package/dist/interface/generated/pareto/schemas/static-html/data_types/source.js +3 -0
  51. package/dist/interface/generated/pareto/schemas/static-html/data_types/target.d.ts +951 -0
  52. package/dist/interface/generated/pareto/schemas/static-html/data_types/target.js +3 -0
  53. package/dist/interface/generated/pareto/schemas/static-html/deserialize.d.ts +106 -0
  54. package/dist/interface/generated/pareto/schemas/static-html/deserialize.js +3 -0
  55. package/dist/interface/generated/pareto/schemas/static-html/marshall.d.ts +123 -0
  56. package/dist/interface/generated/pareto/schemas/static-html/marshall.js +3 -0
  57. package/dist/interface/generated/pareto/schemas/static-html/migrate_boilerplate.d.ts +90 -0
  58. package/dist/interface/generated/pareto/schemas/static-html/migrate_boilerplate.js +3 -0
  59. package/dist/interface/generated/pareto/schemas/static-html/serialize.d.ts +106 -0
  60. package/dist/interface/generated/pareto/schemas/static-html/serialize.js +3 -0
  61. package/dist/interface/generated/pareto/schemas/static-html/unmarshall.d.ts +123 -0
  62. package/dist/interface/generated/pareto/schemas/static-html/unmarshall.js +3 -0
  63. package/dist/interface/generated/pareto/schemas/static-html/value_deserializers.d.ts +64 -0
  64. package/dist/interface/generated/pareto/schemas/static-html/value_deserializers.js +3 -0
  65. package/dist/interface/generated/pareto/schemas/static-html/value_serializers.d.ts +64 -0
  66. package/dist/interface/generated/pareto/schemas/static-html/value_serializers.js +3 -0
  67. package/dist/shorthands/static_html.d.ts +25 -0
  68. package/dist/shorthands/static_html.js +110 -0
  69. package/package.json +17 -0
@@ -0,0 +1,951 @@
1
+ import * as _et from 'exupery-core-types';
2
+ import * as _i_core from "../../../core/resolved";
3
+ export type _T_Classes = _i_core._T_List<null, string>;
4
+ export type _T_Phrasing_Content = _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['span', _T_Phrasing_Content] | readonly [
5
+ 'classified span',
6
+ {
7
+ readonly 'classes': _T_Classes;
8
+ readonly 'content': _T_Phrasing_Content;
9
+ }
10
+ ] | readonly [
11
+ 'titled span',
12
+ {
13
+ readonly 'title': string;
14
+ readonly 'content': _T_Phrasing_Content;
15
+ }
16
+ ] | readonly [
17
+ 'a',
18
+ {
19
+ readonly 'text': string;
20
+ readonly 'href': string;
21
+ }
22
+ ] | readonly [
23
+ 'p',
24
+ {
25
+ readonly 'text': string;
26
+ }
27
+ ]>>;
28
+ export type _T_Flow_Content = _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['div', _T_Flow_Content] | readonly [
29
+ 'dimensioned div',
30
+ {
31
+ readonly 'width': _et.Optional_Value<number>;
32
+ readonly 'height': _et.Optional_Value<number>;
33
+ readonly 'content': _T_Flow_Content;
34
+ }
35
+ ] | readonly [
36
+ 'classified div',
37
+ {
38
+ readonly 'classes': _T_Classes;
39
+ readonly 'content': _T_Flow_Content;
40
+ }
41
+ ] | readonly [
42
+ 'table',
43
+ {
44
+ readonly 'classes': _T_Classes;
45
+ readonly 'children': _i_core._T_List<null, {
46
+ readonly 'classes': _T_Classes;
47
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
48
+ readonly 'rows': _i_core._T_List<null, {
49
+ readonly 'classes': _T_Classes;
50
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
51
+ readonly 'height': _et.Optional_Value<number>;
52
+ readonly 'cells': _i_core._T_List<null, {
53
+ readonly 'classes': _T_Classes;
54
+ readonly 'content': _T_Flow_Content;
55
+ }>;
56
+ }>;
57
+ }>;
58
+ }
59
+ ] | readonly ['span', _T_Phrasing_Content] | readonly [
60
+ 'label',
61
+ {
62
+ readonly 'classes': _T_Classes;
63
+ readonly 'text': string;
64
+ readonly 'content': _T_Flow_Content;
65
+ }
66
+ ] | readonly [
67
+ 'img',
68
+ {
69
+ readonly 'classes': _T_Classes;
70
+ readonly 'src': string;
71
+ readonly 'alt': string;
72
+ readonly 'width': _et.Optional_Value<number>;
73
+ readonly 'height': _et.Optional_Value<number>;
74
+ }
75
+ ] | readonly [
76
+ 'svg',
77
+ {
78
+ readonly 'classes': _T_Classes;
79
+ readonly 'content': string;
80
+ readonly 'width': _et.Optional_Value<number>;
81
+ readonly 'height': _et.Optional_Value<number>;
82
+ }
83
+ ]>>;
84
+ export type _T_Document = {
85
+ readonly 'css': string;
86
+ readonly 'root': _T_Flow_Content;
87
+ };
88
+ export type Classes = _T_Classes;
89
+ export type Phrasing_Content = _T_Phrasing_Content;
90
+ export type Flow_Content = _T_Flow_Content;
91
+ export type Document = _T_Document;
92
+ export declare namespace _T_Classes {
93
+ type L = string;
94
+ }
95
+ export declare namespace _T_Phrasing_Content {
96
+ namespace L {
97
+ namespace SG {
98
+ namespace span {
99
+ }
100
+ type span = _T_Phrasing_Content;
101
+ namespace classified_span {
102
+ namespace classes {
103
+ }
104
+ type classes = _T_Classes;
105
+ namespace content {
106
+ }
107
+ type content = _T_Phrasing_Content;
108
+ }
109
+ type classified_span = {
110
+ readonly 'classes': _T_Classes;
111
+ readonly 'content': _T_Phrasing_Content;
112
+ };
113
+ namespace titled_span {
114
+ type title = string;
115
+ namespace content {
116
+ }
117
+ type content = _T_Phrasing_Content;
118
+ }
119
+ type titled_span = {
120
+ readonly 'title': string;
121
+ readonly 'content': _T_Phrasing_Content;
122
+ };
123
+ namespace a {
124
+ type text = string;
125
+ type href = string;
126
+ }
127
+ type a = {
128
+ readonly 'text': string;
129
+ readonly 'href': string;
130
+ };
131
+ namespace p {
132
+ type text = string;
133
+ }
134
+ type p = {
135
+ readonly 'text': string;
136
+ };
137
+ }
138
+ type SG = readonly ['span', _T_Phrasing_Content] | readonly [
139
+ 'classified span',
140
+ {
141
+ readonly 'classes': _T_Classes;
142
+ readonly 'content': _T_Phrasing_Content;
143
+ }
144
+ ] | readonly [
145
+ 'titled span',
146
+ {
147
+ readonly 'title': string;
148
+ readonly 'content': _T_Phrasing_Content;
149
+ }
150
+ ] | readonly [
151
+ 'a',
152
+ {
153
+ readonly 'text': string;
154
+ readonly 'href': string;
155
+ }
156
+ ] | readonly [
157
+ 'p',
158
+ {
159
+ readonly 'text': string;
160
+ }
161
+ ];
162
+ }
163
+ type L = _i_core._T_State_Group<null, readonly ['span', _T_Phrasing_Content] | readonly [
164
+ 'classified span',
165
+ {
166
+ readonly 'classes': _T_Classes;
167
+ readonly 'content': _T_Phrasing_Content;
168
+ }
169
+ ] | readonly [
170
+ 'titled span',
171
+ {
172
+ readonly 'title': string;
173
+ readonly 'content': _T_Phrasing_Content;
174
+ }
175
+ ] | readonly [
176
+ 'a',
177
+ {
178
+ readonly 'text': string;
179
+ readonly 'href': string;
180
+ }
181
+ ] | readonly [
182
+ 'p',
183
+ {
184
+ readonly 'text': string;
185
+ }
186
+ ]>;
187
+ }
188
+ export declare namespace _T_Flow_Content {
189
+ namespace L {
190
+ namespace SG {
191
+ namespace div {
192
+ }
193
+ type div = _T_Flow_Content;
194
+ namespace dimensioned_div {
195
+ namespace width {
196
+ type O = number;
197
+ }
198
+ type width = _et.Optional_Value<number>;
199
+ namespace height {
200
+ type O = number;
201
+ }
202
+ type height = _et.Optional_Value<number>;
203
+ namespace content {
204
+ }
205
+ type content = _T_Flow_Content;
206
+ }
207
+ type dimensioned_div = {
208
+ readonly 'width': _et.Optional_Value<number>;
209
+ readonly 'height': _et.Optional_Value<number>;
210
+ readonly 'content': _T_Flow_Content;
211
+ };
212
+ namespace classified_div {
213
+ namespace classes {
214
+ }
215
+ type classes = _T_Classes;
216
+ namespace content {
217
+ }
218
+ type content = _T_Flow_Content;
219
+ }
220
+ type classified_div = {
221
+ readonly 'classes': _T_Classes;
222
+ readonly 'content': _T_Flow_Content;
223
+ };
224
+ namespace table {
225
+ namespace classes {
226
+ }
227
+ type classes = _T_Classes;
228
+ namespace children {
229
+ namespace L {
230
+ namespace classes {
231
+ }
232
+ type classes = _T_Classes;
233
+ namespace _type {
234
+ namespace SG {
235
+ type header = null;
236
+ type body = null;
237
+ type footer = null;
238
+ }
239
+ type SG = readonly ['header', null] | readonly ['body', null] | readonly ['footer', null];
240
+ }
241
+ type _type = _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
242
+ namespace rows {
243
+ namespace L {
244
+ namespace classes {
245
+ }
246
+ type classes = _T_Classes;
247
+ namespace _type {
248
+ namespace SG {
249
+ type th = null;
250
+ type td = null;
251
+ }
252
+ type SG = readonly ['th', null] | readonly ['td', null];
253
+ }
254
+ type _type = _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
255
+ namespace height {
256
+ type O = number;
257
+ }
258
+ type height = _et.Optional_Value<number>;
259
+ namespace cells {
260
+ namespace L {
261
+ namespace classes {
262
+ }
263
+ type classes = _T_Classes;
264
+ namespace content {
265
+ }
266
+ type content = _T_Flow_Content;
267
+ }
268
+ type L = {
269
+ readonly 'classes': _T_Classes;
270
+ readonly 'content': _T_Flow_Content;
271
+ };
272
+ }
273
+ type cells = _i_core._T_List<null, {
274
+ readonly 'classes': _T_Classes;
275
+ readonly 'content': _T_Flow_Content;
276
+ }>;
277
+ }
278
+ type L = {
279
+ readonly 'classes': _T_Classes;
280
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
281
+ readonly 'height': _et.Optional_Value<number>;
282
+ readonly 'cells': _i_core._T_List<null, {
283
+ readonly 'classes': _T_Classes;
284
+ readonly 'content': _T_Flow_Content;
285
+ }>;
286
+ };
287
+ }
288
+ type rows = _i_core._T_List<null, {
289
+ readonly 'classes': _T_Classes;
290
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
291
+ readonly 'height': _et.Optional_Value<number>;
292
+ readonly 'cells': _i_core._T_List<null, {
293
+ readonly 'classes': _T_Classes;
294
+ readonly 'content': _T_Flow_Content;
295
+ }>;
296
+ }>;
297
+ }
298
+ type L = {
299
+ readonly 'classes': _T_Classes;
300
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
301
+ readonly 'rows': _i_core._T_List<null, {
302
+ readonly 'classes': _T_Classes;
303
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
304
+ readonly 'height': _et.Optional_Value<number>;
305
+ readonly 'cells': _i_core._T_List<null, {
306
+ readonly 'classes': _T_Classes;
307
+ readonly 'content': _T_Flow_Content;
308
+ }>;
309
+ }>;
310
+ };
311
+ }
312
+ type children = _i_core._T_List<null, {
313
+ readonly 'classes': _T_Classes;
314
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
315
+ readonly 'rows': _i_core._T_List<null, {
316
+ readonly 'classes': _T_Classes;
317
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
318
+ readonly 'height': _et.Optional_Value<number>;
319
+ readonly 'cells': _i_core._T_List<null, {
320
+ readonly 'classes': _T_Classes;
321
+ readonly 'content': _T_Flow_Content;
322
+ }>;
323
+ }>;
324
+ }>;
325
+ }
326
+ type table = {
327
+ readonly 'classes': _T_Classes;
328
+ readonly 'children': _i_core._T_List<null, {
329
+ readonly 'classes': _T_Classes;
330
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
331
+ readonly 'rows': _i_core._T_List<null, {
332
+ readonly 'classes': _T_Classes;
333
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
334
+ readonly 'height': _et.Optional_Value<number>;
335
+ readonly 'cells': _i_core._T_List<null, {
336
+ readonly 'classes': _T_Classes;
337
+ readonly 'content': _T_Flow_Content;
338
+ }>;
339
+ }>;
340
+ }>;
341
+ };
342
+ namespace span {
343
+ }
344
+ type span = _T_Phrasing_Content;
345
+ namespace label {
346
+ namespace classes {
347
+ }
348
+ type classes = _T_Classes;
349
+ type text = string;
350
+ namespace content {
351
+ }
352
+ type content = _T_Flow_Content;
353
+ }
354
+ type label = {
355
+ readonly 'classes': _T_Classes;
356
+ readonly 'text': string;
357
+ readonly 'content': _T_Flow_Content;
358
+ };
359
+ namespace img {
360
+ namespace classes {
361
+ }
362
+ type classes = _T_Classes;
363
+ type src = string;
364
+ type alt = string;
365
+ namespace width {
366
+ type O = number;
367
+ }
368
+ type width = _et.Optional_Value<number>;
369
+ namespace height {
370
+ type O = number;
371
+ }
372
+ type height = _et.Optional_Value<number>;
373
+ }
374
+ type img = {
375
+ readonly 'classes': _T_Classes;
376
+ readonly 'src': string;
377
+ readonly 'alt': string;
378
+ readonly 'width': _et.Optional_Value<number>;
379
+ readonly 'height': _et.Optional_Value<number>;
380
+ };
381
+ namespace svg {
382
+ namespace classes {
383
+ }
384
+ type classes = _T_Classes;
385
+ type content = string;
386
+ namespace width {
387
+ type O = number;
388
+ }
389
+ type width = _et.Optional_Value<number>;
390
+ namespace height {
391
+ type O = number;
392
+ }
393
+ type height = _et.Optional_Value<number>;
394
+ }
395
+ type svg = {
396
+ readonly 'classes': _T_Classes;
397
+ readonly 'content': string;
398
+ readonly 'width': _et.Optional_Value<number>;
399
+ readonly 'height': _et.Optional_Value<number>;
400
+ };
401
+ }
402
+ type SG = readonly ['div', _T_Flow_Content] | readonly [
403
+ 'dimensioned div',
404
+ {
405
+ readonly 'width': _et.Optional_Value<number>;
406
+ readonly 'height': _et.Optional_Value<number>;
407
+ readonly 'content': _T_Flow_Content;
408
+ }
409
+ ] | readonly [
410
+ 'classified div',
411
+ {
412
+ readonly 'classes': _T_Classes;
413
+ readonly 'content': _T_Flow_Content;
414
+ }
415
+ ] | readonly [
416
+ 'table',
417
+ {
418
+ readonly 'classes': _T_Classes;
419
+ readonly 'children': _i_core._T_List<null, {
420
+ readonly 'classes': _T_Classes;
421
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
422
+ readonly 'rows': _i_core._T_List<null, {
423
+ readonly 'classes': _T_Classes;
424
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
425
+ readonly 'height': _et.Optional_Value<number>;
426
+ readonly 'cells': _i_core._T_List<null, {
427
+ readonly 'classes': _T_Classes;
428
+ readonly 'content': _T_Flow_Content;
429
+ }>;
430
+ }>;
431
+ }>;
432
+ }
433
+ ] | readonly ['span', _T_Phrasing_Content] | readonly [
434
+ 'label',
435
+ {
436
+ readonly 'classes': _T_Classes;
437
+ readonly 'text': string;
438
+ readonly 'content': _T_Flow_Content;
439
+ }
440
+ ] | readonly [
441
+ 'img',
442
+ {
443
+ readonly 'classes': _T_Classes;
444
+ readonly 'src': string;
445
+ readonly 'alt': string;
446
+ readonly 'width': _et.Optional_Value<number>;
447
+ readonly 'height': _et.Optional_Value<number>;
448
+ }
449
+ ] | readonly [
450
+ 'svg',
451
+ {
452
+ readonly 'classes': _T_Classes;
453
+ readonly 'content': string;
454
+ readonly 'width': _et.Optional_Value<number>;
455
+ readonly 'height': _et.Optional_Value<number>;
456
+ }
457
+ ];
458
+ }
459
+ type L = _i_core._T_State_Group<null, readonly ['div', _T_Flow_Content] | readonly [
460
+ 'dimensioned div',
461
+ {
462
+ readonly 'width': _et.Optional_Value<number>;
463
+ readonly 'height': _et.Optional_Value<number>;
464
+ readonly 'content': _T_Flow_Content;
465
+ }
466
+ ] | readonly [
467
+ 'classified div',
468
+ {
469
+ readonly 'classes': _T_Classes;
470
+ readonly 'content': _T_Flow_Content;
471
+ }
472
+ ] | readonly [
473
+ 'table',
474
+ {
475
+ readonly 'classes': _T_Classes;
476
+ readonly 'children': _i_core._T_List<null, {
477
+ readonly 'classes': _T_Classes;
478
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
479
+ readonly 'rows': _i_core._T_List<null, {
480
+ readonly 'classes': _T_Classes;
481
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
482
+ readonly 'height': _et.Optional_Value<number>;
483
+ readonly 'cells': _i_core._T_List<null, {
484
+ readonly 'classes': _T_Classes;
485
+ readonly 'content': _T_Flow_Content;
486
+ }>;
487
+ }>;
488
+ }>;
489
+ }
490
+ ] | readonly ['span', _T_Phrasing_Content] | readonly [
491
+ 'label',
492
+ {
493
+ readonly 'classes': _T_Classes;
494
+ readonly 'text': string;
495
+ readonly 'content': _T_Flow_Content;
496
+ }
497
+ ] | readonly [
498
+ 'img',
499
+ {
500
+ readonly 'classes': _T_Classes;
501
+ readonly 'src': string;
502
+ readonly 'alt': string;
503
+ readonly 'width': _et.Optional_Value<number>;
504
+ readonly 'height': _et.Optional_Value<number>;
505
+ }
506
+ ] | readonly [
507
+ 'svg',
508
+ {
509
+ readonly 'classes': _T_Classes;
510
+ readonly 'content': string;
511
+ readonly 'width': _et.Optional_Value<number>;
512
+ readonly 'height': _et.Optional_Value<number>;
513
+ }
514
+ ]>;
515
+ }
516
+ export declare namespace _T_Document {
517
+ type css = string;
518
+ namespace root {
519
+ }
520
+ type root = _T_Flow_Content;
521
+ }
522
+ export declare namespace Classes {
523
+ type L = string;
524
+ }
525
+ export declare namespace Phrasing_Content {
526
+ namespace L {
527
+ namespace SG {
528
+ namespace span {
529
+ }
530
+ type span = _T_Phrasing_Content;
531
+ namespace classified_span {
532
+ namespace classes {
533
+ }
534
+ type classes = _T_Classes;
535
+ namespace content {
536
+ }
537
+ type content = _T_Phrasing_Content;
538
+ }
539
+ type classified_span = {
540
+ readonly 'classes': _T_Classes;
541
+ readonly 'content': _T_Phrasing_Content;
542
+ };
543
+ namespace titled_span {
544
+ type title = string;
545
+ namespace content {
546
+ }
547
+ type content = _T_Phrasing_Content;
548
+ }
549
+ type titled_span = {
550
+ readonly 'title': string;
551
+ readonly 'content': _T_Phrasing_Content;
552
+ };
553
+ namespace a {
554
+ type text = string;
555
+ type href = string;
556
+ }
557
+ type a = {
558
+ readonly 'text': string;
559
+ readonly 'href': string;
560
+ };
561
+ namespace p {
562
+ type text = string;
563
+ }
564
+ type p = {
565
+ readonly 'text': string;
566
+ };
567
+ }
568
+ type SG = readonly ['span', _T_Phrasing_Content] | readonly [
569
+ 'classified span',
570
+ {
571
+ readonly 'classes': _T_Classes;
572
+ readonly 'content': _T_Phrasing_Content;
573
+ }
574
+ ] | readonly [
575
+ 'titled span',
576
+ {
577
+ readonly 'title': string;
578
+ readonly 'content': _T_Phrasing_Content;
579
+ }
580
+ ] | readonly [
581
+ 'a',
582
+ {
583
+ readonly 'text': string;
584
+ readonly 'href': string;
585
+ }
586
+ ] | readonly [
587
+ 'p',
588
+ {
589
+ readonly 'text': string;
590
+ }
591
+ ];
592
+ }
593
+ type L = _i_core._T_State_Group<null, readonly ['span', _T_Phrasing_Content] | readonly [
594
+ 'classified span',
595
+ {
596
+ readonly 'classes': _T_Classes;
597
+ readonly 'content': _T_Phrasing_Content;
598
+ }
599
+ ] | readonly [
600
+ 'titled span',
601
+ {
602
+ readonly 'title': string;
603
+ readonly 'content': _T_Phrasing_Content;
604
+ }
605
+ ] | readonly [
606
+ 'a',
607
+ {
608
+ readonly 'text': string;
609
+ readonly 'href': string;
610
+ }
611
+ ] | readonly [
612
+ 'p',
613
+ {
614
+ readonly 'text': string;
615
+ }
616
+ ]>;
617
+ }
618
+ export declare namespace Flow_Content {
619
+ namespace L {
620
+ namespace SG {
621
+ namespace div {
622
+ }
623
+ type div = _T_Flow_Content;
624
+ namespace dimensioned_div {
625
+ namespace width {
626
+ type O = number;
627
+ }
628
+ type width = _et.Optional_Value<number>;
629
+ namespace height {
630
+ type O = number;
631
+ }
632
+ type height = _et.Optional_Value<number>;
633
+ namespace content {
634
+ }
635
+ type content = _T_Flow_Content;
636
+ }
637
+ type dimensioned_div = {
638
+ readonly 'width': _et.Optional_Value<number>;
639
+ readonly 'height': _et.Optional_Value<number>;
640
+ readonly 'content': _T_Flow_Content;
641
+ };
642
+ namespace classified_div {
643
+ namespace classes {
644
+ }
645
+ type classes = _T_Classes;
646
+ namespace content {
647
+ }
648
+ type content = _T_Flow_Content;
649
+ }
650
+ type classified_div = {
651
+ readonly 'classes': _T_Classes;
652
+ readonly 'content': _T_Flow_Content;
653
+ };
654
+ namespace table {
655
+ namespace classes {
656
+ }
657
+ type classes = _T_Classes;
658
+ namespace children {
659
+ namespace L {
660
+ namespace classes {
661
+ }
662
+ type classes = _T_Classes;
663
+ namespace _type {
664
+ namespace SG {
665
+ type header = null;
666
+ type body = null;
667
+ type footer = null;
668
+ }
669
+ type SG = readonly ['header', null] | readonly ['body', null] | readonly ['footer', null];
670
+ }
671
+ type _type = _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
672
+ namespace rows {
673
+ namespace L {
674
+ namespace classes {
675
+ }
676
+ type classes = _T_Classes;
677
+ namespace _type {
678
+ namespace SG {
679
+ type th = null;
680
+ type td = null;
681
+ }
682
+ type SG = readonly ['th', null] | readonly ['td', null];
683
+ }
684
+ type _type = _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
685
+ namespace height {
686
+ type O = number;
687
+ }
688
+ type height = _et.Optional_Value<number>;
689
+ namespace cells {
690
+ namespace L {
691
+ namespace classes {
692
+ }
693
+ type classes = _T_Classes;
694
+ namespace content {
695
+ }
696
+ type content = _T_Flow_Content;
697
+ }
698
+ type L = {
699
+ readonly 'classes': _T_Classes;
700
+ readonly 'content': _T_Flow_Content;
701
+ };
702
+ }
703
+ type cells = _i_core._T_List<null, {
704
+ readonly 'classes': _T_Classes;
705
+ readonly 'content': _T_Flow_Content;
706
+ }>;
707
+ }
708
+ type L = {
709
+ readonly 'classes': _T_Classes;
710
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
711
+ readonly 'height': _et.Optional_Value<number>;
712
+ readonly 'cells': _i_core._T_List<null, {
713
+ readonly 'classes': _T_Classes;
714
+ readonly 'content': _T_Flow_Content;
715
+ }>;
716
+ };
717
+ }
718
+ type rows = _i_core._T_List<null, {
719
+ readonly 'classes': _T_Classes;
720
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
721
+ readonly 'height': _et.Optional_Value<number>;
722
+ readonly 'cells': _i_core._T_List<null, {
723
+ readonly 'classes': _T_Classes;
724
+ readonly 'content': _T_Flow_Content;
725
+ }>;
726
+ }>;
727
+ }
728
+ type L = {
729
+ readonly 'classes': _T_Classes;
730
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
731
+ readonly 'rows': _i_core._T_List<null, {
732
+ readonly 'classes': _T_Classes;
733
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
734
+ readonly 'height': _et.Optional_Value<number>;
735
+ readonly 'cells': _i_core._T_List<null, {
736
+ readonly 'classes': _T_Classes;
737
+ readonly 'content': _T_Flow_Content;
738
+ }>;
739
+ }>;
740
+ };
741
+ }
742
+ type children = _i_core._T_List<null, {
743
+ readonly 'classes': _T_Classes;
744
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
745
+ readonly 'rows': _i_core._T_List<null, {
746
+ readonly 'classes': _T_Classes;
747
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
748
+ readonly 'height': _et.Optional_Value<number>;
749
+ readonly 'cells': _i_core._T_List<null, {
750
+ readonly 'classes': _T_Classes;
751
+ readonly 'content': _T_Flow_Content;
752
+ }>;
753
+ }>;
754
+ }>;
755
+ }
756
+ type table = {
757
+ readonly 'classes': _T_Classes;
758
+ readonly 'children': _i_core._T_List<null, {
759
+ readonly 'classes': _T_Classes;
760
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
761
+ readonly 'rows': _i_core._T_List<null, {
762
+ readonly 'classes': _T_Classes;
763
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
764
+ readonly 'height': _et.Optional_Value<number>;
765
+ readonly 'cells': _i_core._T_List<null, {
766
+ readonly 'classes': _T_Classes;
767
+ readonly 'content': _T_Flow_Content;
768
+ }>;
769
+ }>;
770
+ }>;
771
+ };
772
+ namespace span {
773
+ }
774
+ type span = _T_Phrasing_Content;
775
+ namespace label {
776
+ namespace classes {
777
+ }
778
+ type classes = _T_Classes;
779
+ type text = string;
780
+ namespace content {
781
+ }
782
+ type content = _T_Flow_Content;
783
+ }
784
+ type label = {
785
+ readonly 'classes': _T_Classes;
786
+ readonly 'text': string;
787
+ readonly 'content': _T_Flow_Content;
788
+ };
789
+ namespace img {
790
+ namespace classes {
791
+ }
792
+ type classes = _T_Classes;
793
+ type src = string;
794
+ type alt = string;
795
+ namespace width {
796
+ type O = number;
797
+ }
798
+ type width = _et.Optional_Value<number>;
799
+ namespace height {
800
+ type O = number;
801
+ }
802
+ type height = _et.Optional_Value<number>;
803
+ }
804
+ type img = {
805
+ readonly 'classes': _T_Classes;
806
+ readonly 'src': string;
807
+ readonly 'alt': string;
808
+ readonly 'width': _et.Optional_Value<number>;
809
+ readonly 'height': _et.Optional_Value<number>;
810
+ };
811
+ namespace svg {
812
+ namespace classes {
813
+ }
814
+ type classes = _T_Classes;
815
+ type content = string;
816
+ namespace width {
817
+ type O = number;
818
+ }
819
+ type width = _et.Optional_Value<number>;
820
+ namespace height {
821
+ type O = number;
822
+ }
823
+ type height = _et.Optional_Value<number>;
824
+ }
825
+ type svg = {
826
+ readonly 'classes': _T_Classes;
827
+ readonly 'content': string;
828
+ readonly 'width': _et.Optional_Value<number>;
829
+ readonly 'height': _et.Optional_Value<number>;
830
+ };
831
+ }
832
+ type SG = readonly ['div', _T_Flow_Content] | readonly [
833
+ 'dimensioned div',
834
+ {
835
+ readonly 'width': _et.Optional_Value<number>;
836
+ readonly 'height': _et.Optional_Value<number>;
837
+ readonly 'content': _T_Flow_Content;
838
+ }
839
+ ] | readonly [
840
+ 'classified div',
841
+ {
842
+ readonly 'classes': _T_Classes;
843
+ readonly 'content': _T_Flow_Content;
844
+ }
845
+ ] | readonly [
846
+ 'table',
847
+ {
848
+ readonly 'classes': _T_Classes;
849
+ readonly 'children': _i_core._T_List<null, {
850
+ readonly 'classes': _T_Classes;
851
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
852
+ readonly 'rows': _i_core._T_List<null, {
853
+ readonly 'classes': _T_Classes;
854
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
855
+ readonly 'height': _et.Optional_Value<number>;
856
+ readonly 'cells': _i_core._T_List<null, {
857
+ readonly 'classes': _T_Classes;
858
+ readonly 'content': _T_Flow_Content;
859
+ }>;
860
+ }>;
861
+ }>;
862
+ }
863
+ ] | readonly ['span', _T_Phrasing_Content] | readonly [
864
+ 'label',
865
+ {
866
+ readonly 'classes': _T_Classes;
867
+ readonly 'text': string;
868
+ readonly 'content': _T_Flow_Content;
869
+ }
870
+ ] | readonly [
871
+ 'img',
872
+ {
873
+ readonly 'classes': _T_Classes;
874
+ readonly 'src': string;
875
+ readonly 'alt': string;
876
+ readonly 'width': _et.Optional_Value<number>;
877
+ readonly 'height': _et.Optional_Value<number>;
878
+ }
879
+ ] | readonly [
880
+ 'svg',
881
+ {
882
+ readonly 'classes': _T_Classes;
883
+ readonly 'content': string;
884
+ readonly 'width': _et.Optional_Value<number>;
885
+ readonly 'height': _et.Optional_Value<number>;
886
+ }
887
+ ];
888
+ }
889
+ type L = _i_core._T_State_Group<null, readonly ['div', _T_Flow_Content] | readonly [
890
+ 'dimensioned div',
891
+ {
892
+ readonly 'width': _et.Optional_Value<number>;
893
+ readonly 'height': _et.Optional_Value<number>;
894
+ readonly 'content': _T_Flow_Content;
895
+ }
896
+ ] | readonly [
897
+ 'classified div',
898
+ {
899
+ readonly 'classes': _T_Classes;
900
+ readonly 'content': _T_Flow_Content;
901
+ }
902
+ ] | readonly [
903
+ 'table',
904
+ {
905
+ readonly 'classes': _T_Classes;
906
+ readonly 'children': _i_core._T_List<null, {
907
+ readonly 'classes': _T_Classes;
908
+ readonly 'type': _i_core._T_State_Group<null, readonly ['header', null] | readonly ['body', null] | readonly ['footer', null]>;
909
+ readonly 'rows': _i_core._T_List<null, {
910
+ readonly 'classes': _T_Classes;
911
+ readonly 'type': _i_core._T_State_Group<null, readonly ['th', null] | readonly ['td', null]>;
912
+ readonly 'height': _et.Optional_Value<number>;
913
+ readonly 'cells': _i_core._T_List<null, {
914
+ readonly 'classes': _T_Classes;
915
+ readonly 'content': _T_Flow_Content;
916
+ }>;
917
+ }>;
918
+ }>;
919
+ }
920
+ ] | readonly ['span', _T_Phrasing_Content] | readonly [
921
+ 'label',
922
+ {
923
+ readonly 'classes': _T_Classes;
924
+ readonly 'text': string;
925
+ readonly 'content': _T_Flow_Content;
926
+ }
927
+ ] | readonly [
928
+ 'img',
929
+ {
930
+ readonly 'classes': _T_Classes;
931
+ readonly 'src': string;
932
+ readonly 'alt': string;
933
+ readonly 'width': _et.Optional_Value<number>;
934
+ readonly 'height': _et.Optional_Value<number>;
935
+ }
936
+ ] | readonly [
937
+ 'svg',
938
+ {
939
+ readonly 'classes': _T_Classes;
940
+ readonly 'content': string;
941
+ readonly 'width': _et.Optional_Value<number>;
942
+ readonly 'height': _et.Optional_Value<number>;
943
+ }
944
+ ]>;
945
+ }
946
+ export declare namespace Document {
947
+ type css = string;
948
+ namespace root {
949
+ }
950
+ type root = _T_Flow_Content;
951
+ }