@nkardaz/typography-rules 1.0.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 (49) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +911 -0
  3. package/dist/api/blacklist.d.ts +72 -0
  4. package/dist/api/htmlNodes.d.ts +30 -0
  5. package/dist/api/index.d.ts +6 -0
  6. package/dist/api/newRule.d.ts +51 -0
  7. package/dist/api/registerRule.d.ts +27 -0
  8. package/dist/api/rulesInit.d.ts +49 -0
  9. package/dist/functions/chemNotation.d.ts +10 -0
  10. package/dist/functions/clearSpaces.d.ts +16 -0
  11. package/dist/functions/index.cjs +514 -0
  12. package/dist/functions/index.d.ts +8 -0
  13. package/dist/functions/index.mjs +491 -0
  14. package/dist/functions/rubyText.d.ts +11 -0
  15. package/dist/functions/runt.d.ts +3 -0
  16. package/dist/functions/smartNumberGrouping.d.ts +25 -0
  17. package/dist/functions/smartQuotes.d.ts +29 -0
  18. package/dist/functions/wrapWithTag.d.ts +42 -0
  19. package/dist/glyphs/index.cjs +737 -0
  20. package/dist/glyphs/index.d.ts +53 -0
  21. package/dist/glyphs/index.mjs +714 -0
  22. package/dist/glyphs/proto.d.ts +11 -0
  23. package/dist/glyphs/registry.d.ts +728 -0
  24. package/dist/glyphs/types.d.ts +151 -0
  25. package/dist/helpers/index.cjs +268 -0
  26. package/dist/helpers/index.d.ts +133 -0
  27. package/dist/helpers/index.mjs +245 -0
  28. package/dist/helpers/types.d.ts +71 -0
  29. package/dist/index.cjs +985 -0
  30. package/dist/index.d.ts +5 -0
  31. package/dist/index.mjs +977 -0
  32. package/dist/style/index.d.ts +2 -0
  33. package/dist/style/main.css +16 -0
  34. package/dist/types.d.ts +223 -0
  35. package/dist/typography/aliases.d.ts +129 -0
  36. package/dist/typography/expressions/common.d.ts +29 -0
  37. package/dist/typography/expressions/en.d.ts +25 -0
  38. package/dist/typography/expressions/ru.d.ts +29 -0
  39. package/dist/typography/markup/common.d.ts +17 -0
  40. package/dist/typography/markup/en.d.ts +3 -0
  41. package/dist/typography/markup/index.d.ts +4 -0
  42. package/dist/typography/markup/ru.d.ts +3 -0
  43. package/dist/typography/sets/ang.d.ts +3 -0
  44. package/dist/typography/sets/common.d.ts +17 -0
  45. package/dist/typography/sets/en.d.ts +14 -0
  46. package/dist/typography/sets/index.d.ts +5 -0
  47. package/dist/typography/sets/ru.d.ts +16 -0
  48. package/dist/typography/store.d.ts +63 -0
  49. package/package.json +92 -0
@@ -0,0 +1,728 @@
1
+ export declare const NONE = "";
2
+ /**
3
+ * Uncategorized set of characters.
4
+ */
5
+ export declare const CHARACTERS: import("./types").GlyphSet<{
6
+ readonly dagger: "†";
7
+ readonly daggerLeftGuard: "⸶";
8
+ readonly daggerRightGuard: "⸷";
9
+ readonly doubleDagger: "‡";
10
+ readonly tripleDagger: "⹋";
11
+ readonly turnedDagger: "⸸";
12
+ readonly numero: "№";
13
+ readonly number: "#";
14
+ readonly section: "§";
15
+ readonly sectionTopHalf: "⸹";
16
+ readonly at: "@";
17
+ readonly percent: "%";
18
+ readonly permil: "‰";
19
+ readonly perTenThousand: "‱";
20
+ readonly trademark: "™";
21
+ readonly registered: "®";
22
+ readonly copyright: "©";
23
+ readonly copyleft: "🄯";
24
+ readonly middleDot: "·";
25
+ readonly dotOperator: "⋅";
26
+ }>;
27
+ /**
28
+ * Ligatures and extended typographic characters.
29
+ *
30
+ * These characters are used for:
31
+ * - typographic replacement (fi → fi)
32
+ * - historical / extended Latin orthography
33
+ * - improved text rendering in typography pipelines
34
+ */
35
+ export declare const LIGATURES: import("./types").GlyphSet<{
36
+ readonly fi: "fi";
37
+ readonly fl: "fl";
38
+ readonly ffi: "ffi";
39
+ readonly ffl: "ffl";
40
+ readonly AA: "Ꜳ";
41
+ readonly aa: "ꜳ";
42
+ readonly AE: "Æ";
43
+ readonly ae: "æ";
44
+ readonly AO: "Ꜵ";
45
+ readonly ao: "ꜵ";
46
+ readonly AU: "Ꜷ";
47
+ readonly au: "ꜷ";
48
+ readonly AV: "Ꜹ";
49
+ readonly av: "ꜹ";
50
+ readonly AY: "Ꜽ";
51
+ readonly ay: "ꜽ";
52
+ readonly OE: "Œ";
53
+ readonly oe: "œ";
54
+ }>;
55
+ /**
56
+ * Typographic dash and hyphen variants.
57
+ *
58
+ * Includes:
59
+ * - standard dashes (em/en)
60
+ * - historical extended dashes
61
+ * - soft hyphenation control
62
+ * - non-breaking and figure-specific variants
63
+ *
64
+ * Used in:
65
+ * - typography normalization
66
+ * - text formatting pipelines
67
+ * - language-specific hyphen rules
68
+ */
69
+ export declare const DASHES: import("./types").GlyphSet<{
70
+ /**
71
+ * Em dash (—), Unicode U+2014.
72
+ *
73
+ * HTML: &amp;mdash; or &amp;#8212;.
74
+ *
75
+ * A full-width punctuation dash commonly used for interruptions,
76
+ * parenthetical statements, dialogue, and emphasis in typography.
77
+ *
78
+ * ---
79
+ *
80
+ * @see {@link https://en.wiktionary.org/wiki/%E2%80%94|Wiktionary: “—”}
81
+ */
82
+ readonly em: "—";
83
+ /**
84
+ * En dash (–), Unicode U+2013.
85
+ *
86
+ * HTML: &amp;ndash; or &amp;#8211;.
87
+ *
88
+ * Traditionally used for numeric ranges (e.g. 10–20), date spans,
89
+ * and relationships between equal terms.
90
+ *
91
+ * ---
92
+ * @see {@link https://en.wiktionary.org/wiki/%E2%80%93|Wiktionary: “–”}
93
+ */
94
+ readonly en: "–";
95
+ /**
96
+ * Two-em dash (⸺), Unicode U+2E3A.
97
+ *
98
+ * HTML: &amp;#11834;.
99
+ *
100
+ * Historically used to indicate omitted text, names, or words,
101
+ * especially in literary and bibliographic works.
102
+ *
103
+ * ---
104
+ * @see {@link https://en.wiktionary.org/wiki/%E2%B8%BA|Wiktionary: “⸺”}
105
+ */
106
+ readonly twoEm: "⸺";
107
+ /**
108
+ * Three-em dash (⸻), Unicode U+2E3B.
109
+ *
110
+ * HTML: &amp;#11835;.
111
+ *
112
+ * Traditionally used to replace an entire omitted word, name,
113
+ * or repeated author name in indexes and bibliographies.
114
+ *
115
+ * ---
116
+ * @see {@link https://en.wiktionary.org/wiki/%E2%B8%BB|Wiktionary: “⸻”}
117
+ */
118
+ readonly threeEm: "⸻";
119
+ /**
120
+ * Soft hyphen, Unicode U+00AD.
121
+ *
122
+ * HTML: &amp;shy; or &amp;#173;.
123
+ *
124
+ * An invisible discretionary hyphen that appears only when a word
125
+ * is broken across lines at its insertion point.
126
+ *
127
+ * ---
128
+ * @see {@link https://en.wikipedia.org/wiki/Soft_hyphen|Wikipedia: “Soft hyphen”}
129
+ * @see {@link https://en.wiktionary.org/wiki/%E2%80%90|Wiktionary: “‐”}
130
+ */
131
+ readonly softHyphen: "­";
132
+ /**
133
+ * Figure dash (‒), Unicode U+2012.
134
+ *
135
+ * HTML: &amp;#8210;.
136
+ *
137
+ * A dash designed to match the width of digits, making it useful
138
+ * in tables, account numbers, dates, and other numeric contexts.
139
+ *
140
+ * ---
141
+ * @see {@link https://en.wiktionary.org/wiki/%E2%80%92|Wiktionary: “‒”}
142
+ */
143
+ readonly figure: "‒";
144
+ /**
145
+ * Hyphen (‐), Unicode U+2010.
146
+ *
147
+ * HTML: &amp;#8208;.
148
+ *
149
+ * The dedicated Unicode hyphen character used to join compound
150
+ * words and affixes without the ambiguity of the ASCII hyphen-minus.
151
+ *
152
+ * ---
153
+ * @see {@link https://en.wiktionary.org/wiki/%E2%80%90|Wiktionary: “‐”}
154
+ */
155
+ readonly hyphen: "‐";
156
+ /**
157
+ * Double hyphen (⹀), Unicode U+2E40.
158
+ *
159
+ * HTML: &amp;#11840;.
160
+ *
161
+ * A typographic punctuation mark representing a paired hyphen,
162
+ * historically used in dictionaries and scholarly texts.
163
+ *
164
+ * ---
165
+ * @see {@link https://en.wiktionary.org/wiki/%E2%B8%80|Wiktionary: “⹀”}
166
+ */
167
+ readonly doubleHyphen: "⹀";
168
+ /**
169
+ * Non-breaking hyphen (-), Unicode U+2011.
170
+ *
171
+ * HTML: &amp;#8209;.
172
+ *
173
+ * A hyphen that prevents line breaks at its position, keeping
174
+ * connected elements together on the same line.
175
+ *
176
+ * ---
177
+ * @see {@link https://en.wiktionary.org/wiki/%E2%80%90|Wiktionary: “‐”}
178
+ */
179
+ readonly noBreakHyphen: "‑";
180
+ /**
181
+ * Horizontal bar (―), Unicode U+2015.
182
+ *
183
+ * HTML: &amp;#8213;.
184
+ *
185
+ * A long horizontal dash used in some writing systems as an
186
+ * alternative to the em dash or as a quotation dash.
187
+ *
188
+ * ---
189
+ * @see {@link https://en.wiktionary.org/wiki/%E2%80%95|Wiktionary: “―”}
190
+ */
191
+ readonly horbar: "―";
192
+ /**
193
+ * Hyphen-minus (-), Unicode U+002D.
194
+ *
195
+ * HTML: &amp;#45;.
196
+ *
197
+ * The standard ASCII keyboard character commonly used as a hyphen,
198
+ * minus sign, dash substitute, and command-line prefix.
199
+ *
200
+ * ---
201
+ * @see {@link https://en.wiktionary.org/wiki/-|Wiktionary: “‐”}
202
+ */
203
+ readonly hyphenMinus: "-";
204
+ /**
205
+ * Underscore (_), Unicode U+005F.
206
+ *
207
+ * HTML: &amp;&lowbar; or &amp;#95;.
208
+ *
209
+ * A low horizontal line commonly used in identifiers, file names,
210
+ * markup syntaxes, and text-based formatting conventions.
211
+ *
212
+ * ---
213
+ * @see {@link https://en.wiktionary.org/wiki/Unsupported_titles/`lowbar`|Wiktionary: “_”}
214
+ */
215
+ readonly underscore: "_";
216
+ }>;
217
+ /**
218
+ * Typographic space characters used in advanced text formatting.
219
+ *
220
+ * This registry includes:
221
+ * - standard Unicode spaces (en/em/etc.)
222
+ * - punctuation and figure spacing
223
+ * - zero-width and non-breaking variants
224
+ *
225
+ * Used for:
226
+ * - smart number formatting
227
+ * - typography normalization
228
+ * - locale-aware spacing rules
229
+ * - text layout control
230
+ */
231
+ export declare const SPACES: import("./types").GlyphSet<{
232
+ readonly _: " ";
233
+ readonly noBreak: " ";
234
+ readonly en: " ";
235
+ readonly em: " ";
236
+ readonly threePerEm: " ";
237
+ readonly fourPerEm: " ";
238
+ readonly sixPerEm: " ";
239
+ readonly figure: " ";
240
+ readonly punctuation: " ";
241
+ readonly thin: " ";
242
+ readonly hair: " ";
243
+ readonly noBreakNarrow: " ";
244
+ readonly mediumMath: " ";
245
+ readonly ideographic: " ";
246
+ readonly zeroWidth: "​";
247
+ readonly zeroWidthNoBreak: "";
248
+ }>;
249
+ /**
250
+ * Mathematical symbols used in typography processing.
251
+ *
252
+ * Includes:
253
+ * - arithmetic operators (e.g. minus sign)
254
+ * - mathematical punctuation (e.g. fraction slash)
255
+ *
256
+ * These characters are used for:
257
+ * - normalization of math expressions
258
+ * - typographic correction of ASCII math symbols
259
+ */
260
+ export declare const MATHS: import("./types").GlyphSet<{
261
+ readonly minus: "−";
262
+ readonly plusMinus: "±";
263
+ readonly minusPlus: "∓";
264
+ readonly multiply: "×";
265
+ readonly obelus: "÷";
266
+ readonly divisionTimes: "⋇";
267
+ readonly fractionSlash: "⁄";
268
+ }>;
269
+ /**
270
+ * Temperature unit symbols in both scientific and typographic forms.
271
+ *
272
+ * Includes:
273
+ * - SI and Unicode-prefixed temperature units (℃, ℉, K)
274
+ * - textual temperature formats (°C, °F, etc.)
275
+ * - historical and non-standard scale representations
276
+ *
277
+ * Used for:
278
+ * - text normalization
279
+ * - unit standardization
280
+ * - scientific text formatting
281
+ */
282
+ export declare const TEMPERATURES: import("./types").GlyphSet<{
283
+ readonly celsiusSolid: "℃";
284
+ readonly fahrenheitSolid: "℉";
285
+ readonly kelvin: "[KK]";
286
+ readonly celsius: "°C";
287
+ readonly fahrenheit: "°F";
288
+ readonly delisle: "°D";
289
+ readonly leiden: "°L";
290
+ readonly newton: "°N";
291
+ readonly wedgewood: "°W";
292
+ readonly dalton: "°Da";
293
+ readonly hooke: "°H";
294
+ readonly rankine: "°R";
295
+ readonly reaumur: "°R[eé]";
296
+ readonly romer: "°R[oø]";
297
+ }>;
298
+ /**
299
+ * Multi-language punctuation character registry.
300
+ *
301
+ * Organized by:
302
+ * - common punctuation (shared across languages)
303
+ * - language-specific punctuation rules (ru, en, fr, is)
304
+ *
305
+ * Includes:
306
+ * - quotes (outer / inner)
307
+ * - inverted punctuation
308
+ * - extended punctuation marks (medieval, interrobang, etc.)
309
+ *
310
+ * Used for:
311
+ * - smart quote replacement
312
+ * - typographic normalization
313
+ * - locale-aware punctuation transformation
314
+ */
315
+ export declare const PUNCTUATION: {
316
+ common: {
317
+ generic: import("./types").GlyphSet<{
318
+ readonly apostrophe: "’";
319
+ }>;
320
+ leftSided: import("./types").GlyphSet<{
321
+ readonly invertedExclamation: "¡";
322
+ readonly invertedQuestion: "¿";
323
+ readonly invertedInterrobang: "⸘";
324
+ }>;
325
+ rightSided: import("./types").GlyphSet<{
326
+ readonly exclamation: "!";
327
+ readonly doubleExclamation: "‼";
328
+ readonly exclamationQuestion: "⁉";
329
+ readonly exclamationMedieval: "⹓";
330
+ readonly question: "?";
331
+ readonly doubleQuestion: "⁇";
332
+ readonly questionExclamation: "⁈";
333
+ readonly questionMedieval: "⹔";
334
+ readonly reversedQuestion: "⸮";
335
+ readonly interrobang: "‽";
336
+ readonly dot: ".";
337
+ readonly comma: ",";
338
+ readonly commaMedieval: "⹌";
339
+ readonly ellipsis: "…";
340
+ }>;
341
+ colons: import("./types").GlyphSet<{
342
+ readonly colon: ":";
343
+ readonly semicolon: ";";
344
+ readonly punctusElevatus: "⹎";
345
+ }>;
346
+ };
347
+ ru: {
348
+ leftSided: import("./types").GlyphSet<{
349
+ readonly outerQuoteOpen: "«";
350
+ readonly innerQuoteOpen: "„";
351
+ }>;
352
+ rightSided: import("./types").GlyphSet<{
353
+ readonly outerQuoteClose: "»";
354
+ readonly innerQuoteClose: "”";
355
+ }>;
356
+ };
357
+ en: {
358
+ leftSided: import("./types").GlyphSet<{
359
+ readonly outerQuoteOpen: "“";
360
+ readonly innerQuoteOpen: "‘";
361
+ }>;
362
+ rightSided: import("./types").GlyphSet<{
363
+ readonly outerQuoteClose: "”";
364
+ readonly innerQuoteClose: "’";
365
+ }>;
366
+ };
367
+ fr: {
368
+ leftSided: import("./types").GlyphSet<{
369
+ readonly outerQuoteOpen: "«";
370
+ readonly innerQuoteOpen: "‹";
371
+ }>;
372
+ rightSided: import("./types").GlyphSet<{
373
+ readonly outerQuoteClose: "»";
374
+ readonly innerQuoteClose: "›";
375
+ }>;
376
+ };
377
+ is: {
378
+ leftSided: import("./types").GlyphSet<{
379
+ readonly outerQuoteOpen: "„";
380
+ readonly innerQuoteOpen: "‚";
381
+ }>;
382
+ rightSided: import("./types").GlyphSet<{
383
+ readonly outerQuoteClose: "“";
384
+ readonly innerQuoteClose: "‘";
385
+ }>;
386
+ };
387
+ } & import("./types").ProtoSet<{
388
+ common: {
389
+ generic: import("./types").GlyphSet<{
390
+ readonly apostrophe: "’";
391
+ }>;
392
+ leftSided: import("./types").GlyphSet<{
393
+ readonly invertedExclamation: "¡";
394
+ readonly invertedQuestion: "¿";
395
+ readonly invertedInterrobang: "⸘";
396
+ }>;
397
+ rightSided: import("./types").GlyphSet<{
398
+ readonly exclamation: "!";
399
+ readonly doubleExclamation: "‼";
400
+ readonly exclamationQuestion: "⁉";
401
+ readonly exclamationMedieval: "⹓";
402
+ readonly question: "?";
403
+ readonly doubleQuestion: "⁇";
404
+ readonly questionExclamation: "⁈";
405
+ readonly questionMedieval: "⹔";
406
+ readonly reversedQuestion: "⸮";
407
+ readonly interrobang: "‽";
408
+ readonly dot: ".";
409
+ readonly comma: ",";
410
+ readonly commaMedieval: "⹌";
411
+ readonly ellipsis: "…";
412
+ }>;
413
+ colons: import("./types").GlyphSet<{
414
+ readonly colon: ":";
415
+ readonly semicolon: ";";
416
+ readonly punctusElevatus: "⹎";
417
+ }>;
418
+ };
419
+ ru: {
420
+ leftSided: import("./types").GlyphSet<{
421
+ readonly outerQuoteOpen: "«";
422
+ readonly innerQuoteOpen: "„";
423
+ }>;
424
+ rightSided: import("./types").GlyphSet<{
425
+ readonly outerQuoteClose: "»";
426
+ readonly innerQuoteClose: "”";
427
+ }>;
428
+ };
429
+ en: {
430
+ leftSided: import("./types").GlyphSet<{
431
+ readonly outerQuoteOpen: "“";
432
+ readonly innerQuoteOpen: "‘";
433
+ }>;
434
+ rightSided: import("./types").GlyphSet<{
435
+ readonly outerQuoteClose: "”";
436
+ readonly innerQuoteClose: "’";
437
+ }>;
438
+ };
439
+ fr: {
440
+ leftSided: import("./types").GlyphSet<{
441
+ readonly outerQuoteOpen: "«";
442
+ readonly innerQuoteOpen: "‹";
443
+ }>;
444
+ rightSided: import("./types").GlyphSet<{
445
+ readonly outerQuoteClose: "»";
446
+ readonly innerQuoteClose: "›";
447
+ }>;
448
+ };
449
+ is: {
450
+ leftSided: import("./types").GlyphSet<{
451
+ readonly outerQuoteOpen: "„";
452
+ readonly innerQuoteOpen: "‚";
453
+ }>;
454
+ rightSided: import("./types").GlyphSet<{
455
+ readonly outerQuoteClose: "“";
456
+ readonly innerQuoteClose: "‘";
457
+ }>;
458
+ };
459
+ }>;
460
+ export declare const BRACKETS: {
461
+ common: {
462
+ left: import("./types").GlyphSet<{
463
+ readonly round: "(";
464
+ readonly square: "[";
465
+ readonly curly: "{";
466
+ }>;
467
+ right: import("./types").GlyphSet<{
468
+ readonly round: ")";
469
+ readonly square: "]";
470
+ readonly curly: "}";
471
+ }>;
472
+ };
473
+ } & import("./types").ProtoSet<{
474
+ common: {
475
+ left: import("./types").GlyphSet<{
476
+ readonly round: "(";
477
+ readonly square: "[";
478
+ readonly curly: "{";
479
+ }>;
480
+ right: import("./types").GlyphSet<{
481
+ readonly round: ")";
482
+ readonly square: "]";
483
+ readonly curly: "}";
484
+ }>;
485
+ };
486
+ }>;
487
+ /**
488
+ * Numeric and numeral character set including:
489
+ * - ASCII digits (0–9)
490
+ * - Roman numeral Unicode characters (capital and small forms)
491
+ *
492
+ * Used for:
493
+ * - digit normalization
494
+ * - roman numeral processing
495
+ * - typography-aware number rendering
496
+ */
497
+ export declare const DIGITS: import("./types").GlyphSet<{
498
+ readonly zero: "0";
499
+ readonly one: "1";
500
+ readonly two: "2";
501
+ readonly three: "3";
502
+ readonly four: "4";
503
+ readonly five: "5";
504
+ readonly six: "6";
505
+ readonly seven: "7";
506
+ readonly eight: "8";
507
+ readonly nine: "9";
508
+ readonly ascii_roman_capital_one: "I";
509
+ readonly ascii_roman_capital_five: "V";
510
+ readonly ascii_roman_capital_ten: "X";
511
+ readonly ascii_roman_capital_fifty: "L";
512
+ readonly ascii_roman_capital_one_hundred: "C";
513
+ readonly ascii_roman_capital_five_hundred: "D";
514
+ readonly ascii_roman_capital_one_thousand: "M";
515
+ readonly roman_capital_one: "Ⅰ";
516
+ readonly roman_capital_two: "Ⅱ";
517
+ readonly roman_capital_three: "Ⅲ";
518
+ readonly roman_capital_four: "Ⅳ";
519
+ readonly roman_capital_five: "Ⅴ";
520
+ readonly roman_capital_six: "Ⅵ";
521
+ readonly roman_capital_six_late_form: "ↅ";
522
+ readonly roman_capital_seven: "Ⅶ";
523
+ readonly roman_capital_eight: "Ⅷ";
524
+ readonly roman_capital_nine: "Ⅸ";
525
+ readonly roman_capital_ten: "Ⅹ";
526
+ readonly roman_capital_eleven: "Ⅺ";
527
+ readonly roman_capital_twelve: "Ⅻ";
528
+ readonly roman_capital_fifty: "Ⅼ";
529
+ readonly roman_capital_fifty_early_form: "ↆ";
530
+ readonly roman_capital_one_hundred: "Ⅽ";
531
+ readonly roman_capital_one_hundred_reversed: "Ↄ";
532
+ readonly roman_capital_five_hundred: "Ⅾ";
533
+ readonly roman_capital_one_thousand: "Ⅿ";
534
+ readonly roman_capital_five_thousand: "ↁ";
535
+ readonly roman_capital_ten_thousand: "ↂ";
536
+ readonly roman_capital_fifty_thousand: "ↇ";
537
+ readonly roman_capital_one_hundred_thousand: "ↈ";
538
+ readonly roman_small_one: "ⅰ";
539
+ readonly roman_small_two: "ⅱ";
540
+ readonly roman_small_three: "ⅲ";
541
+ readonly roman_small_four: "ⅳ";
542
+ readonly roman_small_five: "ⅴ";
543
+ readonly roman_small_six: "ⅵ";
544
+ readonly roman_small_seven: "ⅶ";
545
+ readonly roman_small_eight: "ⅷ";
546
+ readonly roman_small_nine: "ⅸ";
547
+ readonly roman_small_ten: "ⅹ";
548
+ readonly roman_small_eleven: "ⅺ";
549
+ readonly roman_small_twelve: "ⅻ";
550
+ }>;
551
+ /**
552
+ * Currency and monetary symbols registry.
553
+ *
554
+ * Includes:
555
+ * - Unicode currency symbols (€, $, ₿, ₴, etc.)
556
+ * - historical and regional currency signs
557
+ * - roman and archaic monetary units
558
+ * - ISO 4217 currency codes (e.g. USD, EUR, JPY)
559
+ *
560
+ * This registry is used for:
561
+ * - currency normalization in text
562
+ * - typography-aware financial formatting
563
+ * - currency symbol replacement in parsed text
564
+ *
565
+ * Note:
566
+ * Some entries represent ISO codes rather than glyphs,
567
+ * depending on context of usage in formatting pipelines.
568
+ */
569
+ export declare const WALLET: {
570
+ SYMBOL: import("./types").GlyphSet<{
571
+ readonly anis: "¤";
572
+ readonly european_currency_unit: "₠";
573
+ readonly austral: "₳";
574
+ readonly cent: "¢";
575
+ readonly cedi: "₵";
576
+ readonly colon: "₡";
577
+ readonly dollar: "$";
578
+ readonly drachma: "₯";
579
+ readonly dram: "֏";
580
+ readonly doromi: "߾";
581
+ readonly euro: "€";
582
+ readonly franc: "₣";
583
+ readonly guarani: "₲";
584
+ readonly kip: "₭";
585
+ readonly lari: "₾";
586
+ readonly naira: "₦";
587
+ readonly pound: "£";
588
+ readonly tournois: "₶";
589
+ readonly spesmillo: "₷";
590
+ readonly ruble: "₽";
591
+ readonly hryvnia: "₴";
592
+ readonly lira: "₤";
593
+ readonly lira_turkish: "₺";
594
+ readonly baht: "฿";
595
+ readonly rupee: "₹";
596
+ readonly won: "₩";
597
+ readonly yen: "¥";
598
+ readonly yen_kanji: "円";
599
+ readonly yuan_hanzi: "元";
600
+ readonly dong: "₫";
601
+ readonly tugrik: "₮";
602
+ readonly tenge: "₸";
603
+ readonly shekel: "₪";
604
+ readonly manat: "₼";
605
+ readonly rupee_alt: "₨";
606
+ readonly peseta: "₧";
607
+ readonly peso: "₱";
608
+ readonly riyal: "﷼";
609
+ readonly bitcoin_symbol: "₿";
610
+ readonly taka: "৳";
611
+ readonly tamil_rupee: "௹";
612
+ readonly sinhala_rupee: "රු";
613
+ readonly roman_sextans: "𐆐";
614
+ readonly roman_uncia: "𐆑";
615
+ readonly roman_semuncia: "𐆒";
616
+ readonly roman_sextula: "𐆓";
617
+ readonly roman_dimida_sextula: "𐆔";
618
+ readonly roman_siliqua: "𐆕";
619
+ readonly roman_denarius: "𐆖";
620
+ readonly roman_quinarius: "𐆗";
621
+ readonly roman_sestertius: "𐆘";
622
+ readonly roman_dupondius: "𐆙";
623
+ readonly roman_as: "𐆚";
624
+ }>;
625
+ ISO: import("./types").GlyphSet<{
626
+ readonly rub: "RUB";
627
+ readonly usd: "USD";
628
+ readonly eur: "EUR";
629
+ readonly gbp: "GBP";
630
+ readonly jpy: "JPY";
631
+ readonly chf: "CHF";
632
+ readonly cad: "CAD";
633
+ readonly aud: "AUD";
634
+ readonly nzd: "NZD";
635
+ readonly pln: "PLN";
636
+ readonly huf: "HUF";
637
+ readonly brl: "BRL";
638
+ readonly cny: "CNY";
639
+ readonly twd: "TWD";
640
+ readonly sgd: "SGD";
641
+ readonly myr: "MYR";
642
+ readonly idr: "IDR";
643
+ readonly thb: "THB";
644
+ readonly vnd: "VND";
645
+ readonly krw: "KRW";
646
+ readonly pkr: "PKR";
647
+ readonly inr: "INR";
648
+ readonly ils: "ILS";
649
+ readonly qar: "QAR";
650
+ readonly sar: "SAR";
651
+ readonly aed: "AED";
652
+ readonly omr: "OMR";
653
+ readonly yem: "YER";
654
+ readonly jod: "JOD";
655
+ readonly iqd: "IQD";
656
+ readonly kwd: "KWD";
657
+ readonly bhd: "BHD";
658
+ readonly tnd: "TND";
659
+ readonly egp: "EGP";
660
+ readonly syp: "SYP";
661
+ readonly lbp: "LBP";
662
+ readonly czk: "CZK";
663
+ readonly sek: "SEK";
664
+ readonly nok: "NOK";
665
+ readonly dkk: "DKK";
666
+ readonly hrk: "HRK";
667
+ readonly rsd: "RSD";
668
+ readonly bgn: "BGN";
669
+ readonly ron: "RON";
670
+ readonly uah: "UAH";
671
+ readonly kzt: "KZT";
672
+ readonly gel: "GEL";
673
+ readonly amd: "AMD";
674
+ readonly mxn: "MXN";
675
+ readonly clp: "CLP";
676
+ readonly cop: "COP";
677
+ readonly ars: "ARS";
678
+ readonly zar: "ZAR";
679
+ readonly try: "TRY";
680
+ readonly php: "PHP";
681
+ readonly ngn: "NGN";
682
+ readonly lkr: "LKR";
683
+ readonly bdt: "BDT";
684
+ readonly usdt: "USDT";
685
+ readonly btc: "BTC";
686
+ readonly eth: "ETH";
687
+ readonly xrp: "XRP";
688
+ readonly sol: "SOL";
689
+ readonly bnb: "BNB";
690
+ readonly usdc: "USDC";
691
+ }>;
692
+ };
693
+ export declare const RANGES: {
694
+ common: {
695
+ DIGITS: import("./types").GlyphSet<{
696
+ readonly digits: "0-9";
697
+ readonly ascii_roman_numerals: "XIVCMLDZxivcmldz";
698
+ readonly roman_numerals: "Ⅰ-ↈ";
699
+ }>;
700
+ };
701
+ } & import("./types").ProtoSet<{
702
+ common: {
703
+ DIGITS: import("./types").GlyphSet<{
704
+ readonly digits: "0-9";
705
+ readonly ascii_roman_numerals: "XIVCMLDZxivcmldz";
706
+ readonly roman_numerals: "Ⅰ-ↈ";
707
+ }>;
708
+ };
709
+ }>;
710
+ export type GlyphValues<T> = {
711
+ [K in keyof T]: T[K] extends string ? T[K] : never;
712
+ }[keyof T & string];
713
+ export type GlyphGroupValues<T> = {
714
+ [K in keyof T]: GlyphValues<T[K]>;
715
+ }[keyof T];
716
+ export type Characters = GlyphValues<typeof CHARACTERS>;
717
+ export type Ligatures = GlyphValues<typeof LIGATURES>;
718
+ export type Dashes = GlyphValues<typeof DASHES>;
719
+ export type Spaces = GlyphValues<typeof SPACES>;
720
+ export type Maths = GlyphValues<typeof MATHS>;
721
+ export type Temperature = GlyphValues<typeof TEMPERATURES>;
722
+ export type Punctuation = GlyphGroupValues<typeof PUNCTUATION>;
723
+ export type Brackets = GlyphGroupValues<typeof BRACKETS>;
724
+ export type Digits = GlyphGroupValues<typeof DIGITS>;
725
+ export type WalletSymbols = GlyphValues<typeof WALLET.SYMBOL>;
726
+ export type WalletISO = GlyphValues<typeof WALLET.ISO>;
727
+ export type Ranges = GlyphGroupValues<typeof RANGES>;
728
+ //# sourceMappingURL=registry.d.ts.map