basant307/AI_Governance_Project
048
1/**2 * The Grapheme_Cluster_Break property value3 * @see https://www.unicode.org/reports/tr29/#Default_Grapheme_Cluster_Table4 */5export 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 = 1724}25/**26 * The Emoji character property is an extension of UCD but shares the same namespace and structure27 * @see http://www.unicode.org/reports/tr51/tr51-14.html#Emoji_Properties_and_Data_Files28 *29 * Here we model Extended_Pictograhpic only to implement UAX #29 GB1130 * \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 exclusive33 */34export declare const EXTENDED_PICTOGRAPHIC = 101;35//# sourceMappingURL=boundaries.d.ts.map