UNPKG

char-info

Version:

Unicode character information library.

43 lines 1.38 kB
/** @module char-info/unicode */ /** Unicode category names. */ export declare namespace UnicodeCategory { const Letter = "L"; const LetterUppercase = "Lu"; const LetterLowercase = "Ll"; const LetterTitlecase = "Lt"; const LetterModifier = "Lm"; const LetterOther = "Lo"; const MarkNonspacing = "Mn"; const MarkSpacingCombining = "Mc"; const MarkEncloding = "Me"; const Mark = "M"; const NumberDecimalDigit = "Nd"; const NumberLetter = "Nl"; const NumberOther = "No"; const Number = "N"; const PunctuationConnector = "Pc"; const PunctuationDash = "Pd"; const PuncutationOpen = "Ps"; const PunctuationClose = "Pe"; const PunctuationInitialQuote = "Pi"; const PunctuationFinalQuote = "Pf"; const PunctuationOther = "Po"; const Punctuation = "P"; const SymbolMath = "Sm"; const SymbolCurrency = "Sc"; const SymbolModifier = "Sk"; const SymbolOther = "So"; const Symbol = "S"; const SeparatorSpace = "Zs"; const SeparatorLine = "Zl"; const SeparatorParagraph = "Zp"; const Separator = "Z"; const Custom_SeparatorVertical = "_Zv"; const OtherControl = "Cc"; const OtherFormat = "Cf"; const OtherSurrogate = "Cs"; const OtherPrivateUse = "Co"; const OtherNotAssigned = "Cn"; const Other = "C"; } //# sourceMappingURL=categories.d.ts.map