main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
1005 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * The Grapheme_Cluster_Break property value
|
---|
3 | * @see https://www.unicode.org/reports/tr29/#Default_Grapheme_Cluster_Table
|
---|
4 | */
|
---|
5 | export declare enum CLUSTER_BREAK {
|
---|
6 | CR = 0,
|
---|
7 | LF = 1,
|
---|
8 | CONTROL = 2,
|
---|
9 | EXTEND = 3,
|
---|
10 | REGIONAL_INDICATOR = 4,
|
---|
11 | SPACINGMARK = 5,
|
---|
12 | L = 6,
|
---|
13 | V = 7,
|
---|
14 | T = 8,
|
---|
15 | LV = 9,
|
---|
16 | LVT = 10,
|
---|
17 | OTHER = 11,
|
---|
18 | PREPEND = 12,
|
---|
19 | E_BASE = 13,
|
---|
20 | E_MODIFIER = 14,
|
---|
21 | ZWJ = 15,
|
---|
22 | GLUE_AFTER_ZWJ = 16,
|
---|
23 | E_BASE_GAZ = 17
|
---|
24 | }
|
---|
25 | /**
|
---|
26 | * The Emoji character property is an extension of UCD but shares the same namespace and structure
|
---|
27 | * @see http://www.unicode.org/reports/tr51/tr51-14.html#Emoji_Properties_and_Data_Files
|
---|
28 | *
|
---|
29 | * Here we model Extended_Pictograhpic only to implement UAX #29 GB11
|
---|
30 | * \p{Extended_Pictographic} Extend* ZWJ × \p{Extended_Pictographic}
|
---|
31 | *
|
---|
32 | * The Emoji character property should not be mixed with Grapheme_Cluster_Break since they are not exclusive
|
---|
33 | */
|
---|
34 | export declare const EXTENDED_PICTOGRAPHIC = 101;
|
---|
35 | //# sourceMappingURL=boundaries.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.