enums.js 759 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. 'use strict';
  2. module.exports = {
  3. ValueType: {
  4. Null: 0,
  5. Merge: 1,
  6. Number: 2,
  7. String: 3,
  8. Date: 4,
  9. Hyperlink: 5,
  10. Formula: 6,
  11. SharedString: 7,
  12. RichText: 8,
  13. Boolean: 9,
  14. Error: 10
  15. },
  16. FormulaType: {
  17. None: 0,
  18. Master: 1,
  19. Shared: 2
  20. },
  21. RelationshipType: {
  22. None: 0,
  23. OfficeDocument: 1,
  24. Worksheet: 2,
  25. CalcChain: 3,
  26. SharedStrings: 4,
  27. Styles: 5,
  28. Theme: 6,
  29. Hyperlink: 7
  30. },
  31. DocumentType: {
  32. Xlsx: 1
  33. },
  34. ReadingOrder: {
  35. LeftToRight: 1,
  36. RightToLeft: 2
  37. },
  38. ErrorValue: {
  39. NotApplicable: '#N/A',
  40. Ref: '#REF!',
  41. Name: '#NAME?',
  42. DivZero: '#DIV/0!',
  43. Null: '#NULL!',
  44. Value: '#VALUE!',
  45. Num: '#NUM!'
  46. }
  47. };
  48. //# sourceMappingURL=enums.js.map