智慧水务管理系统 - 精河县供水工程综合管理平台

123456789101112131415161718192021222324252627282930
  1. /**
  2. * Common UTF-16 character codes used in the program.
  3. *
  4. * This is a 'const' enum, meaning that the numerical value will be inlined into
  5. * the code when TypeScript is compiled.
  6. */
  7. export declare const enum Char {
  8. A = 65,
  9. Z = 90,
  10. a = 97,
  11. z = 122,
  12. DoubleQuote = 34,// char code for "
  13. SingleQuote = 39,// char code for '
  14. Zero = 48,// char code for '0'
  15. Nine = 57,// char code for '9'
  16. Space = 32,// U+0020 Space <SP> Normal space
  17. NumberSign = 35,// '#' char
  18. OpenParen = 40,// '(' char
  19. CloseParen = 41,// ')' char
  20. Plus = 43,// '+' char
  21. Comma = 44,// ',' char
  22. Dash = 45,// '-' char
  23. Dot = 46,// '.' char
  24. Slash = 47,// '/' char
  25. Colon = 58,// ':' char
  26. SemiColon = 59,// ';' char
  27. Question = 63,// '?' char
  28. AtSign = 64,// '@' char
  29. Underscore = 95
  30. }