@byomakase/omakase-ttconv-ts 1.0.0-RC1

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.
@@ -0,0 +1,639 @@
1
+ export declare interface ActiveAreaType {
2
+ leftOffset: number;
3
+ topOffset: number;
4
+ width: number;
5
+ height: number;
6
+ }
7
+
8
+ declare class Body_2 extends ContentElement {
9
+ }
10
+ export { Body_2 as Body }
11
+
12
+ export declare class Br extends ContentElement {
13
+ constructor(doc?: ContentDocument);
14
+ }
15
+
16
+ export declare interface CellResolutionType {
17
+ rows: number;
18
+ columns: number;
19
+ }
20
+
21
+ export declare class ClockTime {
22
+ private hours;
23
+ private minutes;
24
+ private seconds;
25
+ private milliseconds;
26
+ private separator;
27
+ constructor(hours: number, minutes: number, seconds: number, milliseconds: number);
28
+ static fromSeconds(seconds: Fraction | number): ClockTime;
29
+ static parse(s: string): ClockTime | null;
30
+ setSeparator(sep: string): void;
31
+ toSeconds(): number;
32
+ toFraction(): Fraction;
33
+ toString(): string;
34
+ }
35
+
36
+ export declare interface ColorType {
37
+ r: number;
38
+ g: number;
39
+ b: number;
40
+ a: number;
41
+ }
42
+
43
+ export declare class ContentDocument extends Document_2 {
44
+ private _body;
45
+ private _regions;
46
+ private _contentProfiles;
47
+ private _initialValues;
48
+ setBody(body: Body_2 | null): void;
49
+ getBody(): Body_2 | null;
50
+ setInitialValue(prop: StylePropertyKeyType, value: unknown): void;
51
+ getInitialValue(prop: StylePropertyKeyType): unknown;
52
+ iterInitialValues(): IterableIterator<[StylePropertyKeyType, unknown]>;
53
+ putRegion(region: Region): void;
54
+ getRegion(id: string): Region | undefined;
55
+ iterRegions(): IterableIterator<Region>;
56
+ setContentProfiles(profiles: string[] | null): void;
57
+ getContentProfiles(): string[] | null;
58
+ }
59
+
60
+ declare abstract class ContentElement {
61
+ protected _doc: ContentDocument | null;
62
+ protected _id: string | null;
63
+ protected _begin: Fraction | null;
64
+ protected _end: Fraction | null;
65
+ protected _styles: StyleMap;
66
+ protected _animation: DiscreteAnimationStep[];
67
+ protected _space: WhiteSpaceHandling | null;
68
+ protected _lang: string | null;
69
+ protected _firstChild: ContentElement | null;
70
+ protected _lastChild: ContentElement | null;
71
+ protected _nextSibling: ContentElement | null;
72
+ protected _previousSibling: ContentElement | null;
73
+ protected _parent: ContentElement | null;
74
+ constructor(doc?: ContentDocument);
75
+ setDoc(doc: ContentDocument): void;
76
+ getDoc(): ContentDocument | null;
77
+ setId(id: string): void;
78
+ getId(): string | null;
79
+ setBegin(begin: Fraction | null): void;
80
+ getBegin(): Fraction | null;
81
+ setEnd(end: Fraction | null): void;
82
+ getEnd(): Fraction | null;
83
+ setStyle(prop: StylePropertyKeyType, value: StylePropertyValue): void;
84
+ getStyle(prop: StylePropertyKeyType): StylePropertyValue | undefined;
85
+ iterStyles(): IterableIterator<StylePropertyKeyType>;
86
+ setSpace(space: WhiteSpaceHandling): void;
87
+ getSpace(): WhiteSpaceHandling | null;
88
+ setLang(lang: string): void;
89
+ getLang(): string | null;
90
+ addAnimationStep(step: DiscreteAnimationStep): void;
91
+ iterAnimationSteps(): DiscreteAnimationStep[];
92
+ pushChild(child: ContentElement): void;
93
+ getFirstChild(): ContentElement | null;
94
+ getLastChild(): ContentElement | null;
95
+ getNextSibling(): ContentElement | null;
96
+ getPreviousSibling(): ContentElement | null;
97
+ getParent(): ContentElement | null;
98
+ iterChildren(): IterableIterator<ContentElement>;
99
+ dfsIterator(): IterableIterator<ContentElement>;
100
+ }
101
+
102
+ export declare function convert(input: string | Buffer, inputFormat: InputFormat, outputFormat: OutputFormat, config?: ConvertConfig, progressCallback?: (progress: number) => void): string;
103
+
104
+ export declare interface ConvertConfig {
105
+ reader?: SccReaderConfiguration;
106
+ writer?: SrtWriterConfig | VttWriterConfig | ImscWriterConfig;
107
+ slewOptions?: SlewOptions;
108
+ }
109
+
110
+ export declare function convertScc(sccContent: string, format: 'srt' | 'vtt' | 'imsc', config?: Record<string, unknown>): Promise<string>;
111
+
112
+ export declare function convertStl(stlData: Buffer, format: 'srt' | 'vtt' | 'imsc', config?: Record<string, unknown>): Promise<string>;
113
+
114
+ export declare interface CoordinateType {
115
+ x: LengthType;
116
+ y: LengthType;
117
+ }
118
+
119
+ export declare enum DirectionType {
120
+ ltr = "ltr",
121
+ rtl = "rtl"
122
+ }
123
+
124
+ export declare interface DiscreteAnimationStep {
125
+ styleProperty: StylePropertyKeyType;
126
+ begin: Fraction;
127
+ end: Fraction;
128
+ value: StylePropertyValue;
129
+ }
130
+
131
+ export declare enum DisplayAlignType {
132
+ before = "before",
133
+ center = "center",
134
+ after = "after"
135
+ }
136
+
137
+ export declare enum DisplayType {
138
+ none = "none",
139
+ auto = "auto"
140
+ }
141
+
142
+ export declare class Div extends ContentElement {
143
+ }
144
+
145
+ declare abstract class Document_2 {
146
+ protected _lang: string;
147
+ protected _cellResolution: CellResolutionType;
148
+ protected _pxResolution: PixelResolutionType | null;
149
+ protected _activeArea: ActiveAreaType | null;
150
+ protected _displayAspectRatio: number | null;
151
+ setLang(lang: string): void;
152
+ getLang(): string;
153
+ setCellResolution(res: CellResolutionType | null): void;
154
+ getCellResolution(): CellResolutionType;
155
+ setPxResolution(res: PixelResolutionType | null): void;
156
+ getPxResolution(): PixelResolutionType | null;
157
+ setActiveArea(area: ActiveAreaType | null): void;
158
+ getActiveArea(): ActiveAreaType | null;
159
+ setDisplayAspectRatio(dar: number | null): void;
160
+ getDisplayAspectRatio(): number | null;
161
+ }
162
+
163
+ export declare interface ExtentType {
164
+ width: LengthType;
165
+ height: LengthType;
166
+ }
167
+
168
+ export declare type FontFamilyType = string[];
169
+
170
+ export declare enum FontStyleType {
171
+ normal = "normal",
172
+ italic = "italic",
173
+ oblique = "oblique"
174
+ }
175
+
176
+ declare enum FontVariantType {
177
+ normal = "normal",
178
+ superscript = "super",
179
+ subscript = "sub"
180
+ }
181
+
182
+ export declare enum FontWeightType {
183
+ normal = "normal",
184
+ bold = "bold"
185
+ }
186
+
187
+ export declare const FPS_23_98: Fraction;
188
+
189
+ export declare const FPS_24: Fraction;
190
+
191
+ export declare const FPS_25: Fraction;
192
+
193
+ export declare const FPS_29_97: Fraction;
194
+
195
+ export declare const FPS_30: Fraction;
196
+
197
+ export declare const FPS_50: Fraction;
198
+
199
+ export declare const FPS_59_94: Fraction;
200
+
201
+ export declare const FPS_60: Fraction;
202
+
203
+ export declare class Fraction {
204
+ readonly numerator: number;
205
+ readonly denominator: number;
206
+ constructor(numerator: number, denominator?: number);
207
+ toNumber(): number;
208
+ add(other: Fraction): Fraction;
209
+ subtract(other: Fraction): Fraction;
210
+ multiply(other: Fraction | number): Fraction;
211
+ divide(other: Fraction | number): Fraction;
212
+ lessThan(other: Fraction): boolean;
213
+ lessOrEqual(other: Fraction): boolean;
214
+ greaterThan(other: Fraction): boolean;
215
+ equals(other: Fraction): boolean;
216
+ static fromNumber(n: number): Fraction;
217
+ static ZERO: Fraction;
218
+ static ONE: Fraction;
219
+ }
220
+
221
+ export declare function imscFromModel(doc: ContentDocument, config?: ImscWriterConfig, progressCallback?: (progress: number) => void): string;
222
+
223
+ export declare interface ImscWriterConfig {
224
+ frameRate?: Fraction;
225
+ timeExpressionSyntax?: 'clock_time' | 'frames' | 'clock_time_with_frames';
226
+ contentProfilesSignaling?: 'none' | 'content_profiles';
227
+ }
228
+
229
+ export declare type InputFormat = 'scc' | 'stl' | 'srt' | 'vtt' | 'ttml';
230
+
231
+ export declare class ISD extends ContentDocument {
232
+ private _isdRegions;
233
+ putISDRegion(region: ISDRegion): void;
234
+ getISDRegion(id: string): ISDRegion | undefined;
235
+ iterISDRegions(): IterableIterator<ISDRegion>;
236
+ static significantTimes(doc: ContentDocument): Fraction[];
237
+ static fromModel(doc: ContentDocument, offset: Fraction): ISD;
238
+ static generateISDSequence(doc: ContentDocument): Array<[Fraction, ISD]>;
239
+ }
240
+
241
+ export declare class ISDElement {
242
+ readonly kind: 'body' | 'div' | 'p' | 'span' | 'br' | 'text';
243
+ private _styles;
244
+ private _children;
245
+ private _text;
246
+ private _space;
247
+ private _lang;
248
+ constructor(kind: ISDElement['kind']);
249
+ setStyle(prop: StylePropertyKeyType, value: StylePropertyValue): void;
250
+ getStyle(prop: StylePropertyKeyType): StylePropertyValue | undefined;
251
+ iterStyles(): IterableIterator<[StylePropertyKeyType, StylePropertyValue]>;
252
+ pushChild(child: ISDElement): void;
253
+ getChildren(): ISDElement[];
254
+ getText(): string | null;
255
+ setText(text: string): void;
256
+ setSpace(space: WhiteSpaceHandling | null): void;
257
+ getSpace(): WhiteSpaceHandling | null;
258
+ setLang(lang: string | null): void;
259
+ getLang(): string | null;
260
+ }
261
+
262
+ export declare class ISDRegion {
263
+ readonly id: string;
264
+ private _styles;
265
+ private _children;
266
+ constructor(id: string);
267
+ setStyle(prop: StylePropertyKeyType, value: StylePropertyValue): void;
268
+ getStyle(prop: StylePropertyKeyType): StylePropertyValue | undefined;
269
+ iterStyles(): IterableIterator<StylePropertyKeyType>;
270
+ pushChild(child: ISDElement): void;
271
+ getChildren(): ISDElement[];
272
+ isEmpty(): boolean;
273
+ }
274
+
275
+ export declare interface LengthType {
276
+ value: number;
277
+ units: LengthUnits;
278
+ }
279
+
280
+ export declare enum LengthUnits {
281
+ em = "em",
282
+ pct = "%",
283
+ rh = "rh",
284
+ rw = "rw",
285
+ c = "c",
286
+ px = "px"
287
+ }
288
+
289
+ export declare function makeColor(r: number, g: number, b: number, a?: number): ColorType;
290
+
291
+ export declare function makeLengthType(value: number, units: LengthUnits): LengthType;
292
+
293
+ export declare function makeTextDecoration(underline?: boolean, overline?: boolean, lineThrough?: boolean): TextDecorationType;
294
+
295
+ declare enum MultiRowAlignType {
296
+ auto = "auto",
297
+ start = "start",
298
+ center = "center",
299
+ end = "end"
300
+ }
301
+
302
+ export declare const NamedColors: {
303
+ white: ColorType;
304
+ silver: ColorType;
305
+ gray: ColorType;
306
+ black: ColorType;
307
+ maroon: ColorType;
308
+ red: ColorType;
309
+ fuchsia: ColorType;
310
+ purple: ColorType;
311
+ lime: ColorType;
312
+ green: ColorType;
313
+ olive: ColorType;
314
+ yellow: ColorType;
315
+ navy: ColorType;
316
+ blue: ColorType;
317
+ teal: ColorType;
318
+ aqua: ColorType;
319
+ cyan: ColorType;
320
+ magenta: ColorType;
321
+ transparent: ColorType;
322
+ };
323
+
324
+ export declare type OutputFormat = 'srt' | 'vtt' | 'ttml';
325
+
326
+ export declare enum OverflowType {
327
+ hidden = "hidden",
328
+ visible = "visible"
329
+ }
330
+
331
+ export declare class P extends ContentElement {
332
+ private _region;
333
+ setRegion(region: Region | null): void;
334
+ getRegion(): Region | null;
335
+ }
336
+
337
+ export declare interface PaddingType {
338
+ before: LengthType;
339
+ after: LengthType;
340
+ start: LengthType;
341
+ end: LengthType;
342
+ }
343
+
344
+ export declare interface PixelResolutionType {
345
+ width: number;
346
+ height: number;
347
+ }
348
+
349
+ export declare class Region extends ContentElement {
350
+ constructor(id: string, doc?: ContentDocument);
351
+ }
352
+
353
+ declare enum RubyAlignType {
354
+ start = "start",
355
+ center = "center",
356
+ spaceAround = "spaceAround",
357
+ spaceBetween = "spaceBetween"
358
+ }
359
+
360
+ declare enum RubyPositionType {
361
+ before = "before",
362
+ after = "after",
363
+ outside = "outside"
364
+ }
365
+
366
+ declare enum RubyType {
367
+ none = "none",
368
+ container = "container",
369
+ baseContainer = "baseContainer",
370
+ base = "base",
371
+ textContainer = "textContainer",
372
+ text = "text",
373
+ delimiter = "delimiter"
374
+ }
375
+
376
+ export declare interface SccReaderConfiguration {
377
+ textAlign?: TextAlignment;
378
+ }
379
+
380
+ export declare function sccToModel(sccContent: string, config?: SccReaderConfiguration, progressCallback?: (progress: number) => void): ContentDocument;
381
+
382
+ export declare enum ShowBackgroundType {
383
+ always = "always",
384
+ whenActive = "whenActive"
385
+ }
386
+
387
+ export declare function slew(input: string, format: SlewFormat, slewOptions: SlewOptions): string;
388
+
389
+ export declare type SlewFormat = OutputFormat | 'ass' | 'ssa';
390
+
391
+ export declare interface SlewOptions {
392
+ timeSlew: number;
393
+ expectedFrameRate?: number | string;
394
+ }
395
+
396
+ export declare class SmpteTimeCode {
397
+ private hours;
398
+ private minutes;
399
+ private seconds;
400
+ private frames;
401
+ private frameRate;
402
+ private dropFrame;
403
+ constructor(hours: number, minutes: number, seconds: number, frames: number, frameRate: Fraction, dropFrame?: boolean);
404
+ static parse(s: string, frameRate: Fraction): SmpteTimeCode | null;
405
+ static fromFrames(totalFrames: number, frameRate: Fraction, dropFrame?: boolean): SmpteTimeCode;
406
+ toFrames(): number;
407
+ toSeconds(): Fraction;
408
+ toTemporalOffset(): Fraction;
409
+ static fromSeconds(seconds: Fraction, frameRate: Fraction, dropFrame?: boolean): SmpteTimeCode;
410
+ addFrames(n: number): SmpteTimeCode;
411
+ getHours(): number;
412
+ getMinutes(): number;
413
+ getSeconds(): number;
414
+ getFrames(): number;
415
+ getFrameRate(): Fraction;
416
+ isDropFrame(): boolean;
417
+ toString(): string;
418
+ }
419
+
420
+ export declare class Span extends ContentElement {
421
+ }
422
+
423
+ export declare function srtFromModel(doc: ContentDocument, config?: SrtWriterConfig, progressCallback?: (progress: number) => void): string;
424
+
425
+ declare interface SrtReaderConfig {
426
+ alignmentTags?: boolean;
427
+ extendedTags?: boolean;
428
+ }
429
+
430
+ export declare function srtToModel(content: string, config?: SrtReaderConfig): ContentDocument;
431
+
432
+ export declare interface SrtWriterConfig {
433
+ textFormatting?: boolean;
434
+ }
435
+
436
+ export declare interface StlReaderConfig {
437
+ disableFillLineGap?: boolean;
438
+ programStartTc?: string | null;
439
+ disableLinePadding?: boolean;
440
+ fontStack?: string[] | null;
441
+ maxRowCount?: number | 'MNR' | null;
442
+ }
443
+
444
+ export declare function stlToModel(data: Buffer, config?: StlReaderConfig, progressCallback?: (progress: number) => void): ContentDocument;
445
+
446
+ export declare type StyleMap = Map<StylePropertyKeyType, StylePropertyValue>;
447
+
448
+ export declare namespace StyleProperties {
449
+ const BackgroundColor: "BackgroundColor";
450
+ const Color: "Color";
451
+ const Direction: "Direction";
452
+ const Display: "Display";
453
+ const DisplayAlign: "DisplayAlign";
454
+ const Extent: "Extent";
455
+ const FillLineGap: "FillLineGap";
456
+ const FontFamily: "FontFamily";
457
+ const FontSize: "FontSize";
458
+ const FontStyle: "FontStyle";
459
+ const FontVariant: "FontVariant";
460
+ const FontWeight: "FontWeight";
461
+ const LineHeight: "LineHeight";
462
+ const LinePadding: "LinePadding";
463
+ const LuminanceGain: "LuminanceGain";
464
+ const MultiRowAlign: "MultiRowAlign";
465
+ const Opacity: "Opacity";
466
+ const Origin: "Origin";
467
+ const Overflow: "Overflow";
468
+ const Padding: "Padding";
469
+ const Position: "Position";
470
+ const Ruby: "Ruby";
471
+ const RubyAlign: "RubyAlign";
472
+ const RubyPosition: "RubyPosition";
473
+ const RubyReserve: "RubyReserve";
474
+ const Shear: "Shear";
475
+ const ShowBackground: "ShowBackground";
476
+ const TextAlign: "TextAlign";
477
+ const TextCombine: "TextCombine";
478
+ const TextDecoration: "TextDecoration";
479
+ const TextEmphasis: "TextEmphasis";
480
+ const TextOutline: "TextOutline";
481
+ const TextShadow: "TextShadow";
482
+ const UnicodeBidi: "UnicodeBidi";
483
+ const Visibility: "Visibility";
484
+ const WrapOption: "WrapOption";
485
+ const WritingMode: "WritingMode";
486
+ const INITIAL_VALUES: Partial<Record<StylePropertyKeyType, StylePropertyValue>>;
487
+ const INHERITED: Set<StylePropertyKeyType>;
488
+ }
489
+
490
+ declare const StylePropertyKey: {
491
+ readonly BackgroundColor: "BackgroundColor";
492
+ readonly Color: "Color";
493
+ readonly Direction: "Direction";
494
+ readonly Display: "Display";
495
+ readonly DisplayAlign: "DisplayAlign";
496
+ readonly Extent: "Extent";
497
+ readonly FillLineGap: "FillLineGap";
498
+ readonly FontFamily: "FontFamily";
499
+ readonly FontSize: "FontSize";
500
+ readonly FontStyle: "FontStyle";
501
+ readonly FontVariant: "FontVariant";
502
+ readonly FontWeight: "FontWeight";
503
+ readonly LineHeight: "LineHeight";
504
+ readonly LinePadding: "LinePadding";
505
+ readonly LuminanceGain: "LuminanceGain";
506
+ readonly MultiRowAlign: "MultiRowAlign";
507
+ readonly Opacity: "Opacity";
508
+ readonly Origin: "Origin";
509
+ readonly Overflow: "Overflow";
510
+ readonly Padding: "Padding";
511
+ readonly Position: "Position";
512
+ readonly Ruby: "Ruby";
513
+ readonly RubyAlign: "RubyAlign";
514
+ readonly RubyPosition: "RubyPosition";
515
+ readonly RubyReserve: "RubyReserve";
516
+ readonly Shear: "Shear";
517
+ readonly ShowBackground: "ShowBackground";
518
+ readonly TextAlign: "TextAlign";
519
+ readonly TextCombine: "TextCombine";
520
+ readonly TextDecoration: "TextDecoration";
521
+ readonly TextEmphasis: "TextEmphasis";
522
+ readonly TextOutline: "TextOutline";
523
+ readonly TextShadow: "TextShadow";
524
+ readonly UnicodeBidi: "UnicodeBidi";
525
+ readonly Visibility: "Visibility";
526
+ readonly WrapOption: "WrapOption";
527
+ readonly WritingMode: "WritingMode";
528
+ };
529
+
530
+ export declare type StylePropertyKeyType = typeof StylePropertyKey[keyof typeof StylePropertyKey];
531
+
532
+ export declare type StylePropertyValue = ColorType | LengthType | ExtentType | CoordinateType | PaddingType | FontWeightType | FontStyleType | FontVariantType | TextDecorationType | TextAlignType | DisplayAlignType | WritingModeType | DisplayType | VisibilityType | OverflowType | WrapOptionType | ShowBackgroundType | UnicodeBidiType | DirectionType | FontFamilyType | TextOutlineType | TextShadowType | TextEmphasisType | TextCombineType | RubyType | RubyAlignType | RubyPositionType | MultiRowAlignType | number | boolean | string;
533
+
534
+ declare class Text_2 extends ContentElement {
535
+ private _text;
536
+ constructor(doc: ContentDocument | undefined, text: string);
537
+ getText(): string;
538
+ setText(text: string): void;
539
+ }
540
+ export { Text_2 as Text }
541
+
542
+ declare enum TextAlignment {
543
+ AUTO = "auto",
544
+ LEFT = "left",
545
+ CENTER = "center",
546
+ RIGHT = "right"
547
+ }
548
+
549
+ export declare enum TextAlignType {
550
+ left = "left",
551
+ center = "center",
552
+ right = "right",
553
+ start = "start",
554
+ end = "end",
555
+ justify = "justify"
556
+ }
557
+
558
+ declare enum TextCombineType {
559
+ none = "none",
560
+ all = "all"
561
+ }
562
+
563
+ export declare interface TextDecorationType {
564
+ underline: boolean;
565
+ overline: boolean;
566
+ lineThrough: boolean;
567
+ }
568
+
569
+ declare enum TextEmphasisStyle {
570
+ none = "none",
571
+ dot = "dot",
572
+ circle = "circle",
573
+ triangle = "triangle",
574
+ sesame = "sesame",
575
+ auto = "auto"
576
+ }
577
+
578
+ export declare interface TextEmphasisType {
579
+ style: TextEmphasisStyle;
580
+ color?: ColorType;
581
+ position?: 'before' | 'after';
582
+ filled?: boolean;
583
+ }
584
+
585
+ export declare interface TextOutlineType {
586
+ color?: ColorType;
587
+ thickness: LengthType;
588
+ }
589
+
590
+ export declare interface TextShadowType {
591
+ shadows: Array<{
592
+ xOffset: LengthType;
593
+ yOffset: LengthType;
594
+ blurRadius?: LengthType;
595
+ color?: ColorType;
596
+ }>;
597
+ }
598
+
599
+ export declare function ttmlToModel(xmlStr: string): ContentDocument;
600
+
601
+ export declare enum UnicodeBidiType {
602
+ normal = "normal",
603
+ embed = "embed",
604
+ bidiOverride = "bidiOverride"
605
+ }
606
+
607
+ export declare enum VisibilityType {
608
+ hidden = "hidden",
609
+ visible = "visible"
610
+ }
611
+
612
+ export declare function vttFromModel(doc: ContentDocument, config?: VttWriterConfig, progressCallback?: (progress: number) => void): string;
613
+
614
+ export declare function vttToModel(content: string): ContentDocument;
615
+
616
+ export declare interface VttWriterConfig {
617
+ styleRegion?: boolean;
618
+ textAlign?: boolean;
619
+ cueId?: boolean;
620
+ }
621
+
622
+ export declare enum WhiteSpaceHandling {
623
+ DEFAULT = "default",
624
+ PRESERVE = "preserve"
625
+ }
626
+
627
+ export declare enum WrapOptionType {
628
+ noWrap = "noWrap",
629
+ wrap = "wrap"
630
+ }
631
+
632
+ export declare enum WritingModeType {
633
+ lrtb = "lrtb",
634
+ rltb = "rltb",
635
+ tbrl = "tbrl",
636
+ tblr = "tblr"
637
+ }
638
+
639
+ export { }