您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.js 447B

1234567891011121314151617181920212223242526
  1. // @flow
  2. /**
  3. * An enumeration of support calendar integration types.
  4. *
  5. * @enum {string}
  6. */
  7. export const CALENDAR_TYPE = {
  8. GOOGLE: 'google',
  9. MICROSOFT: 'microsoft'
  10. };
  11. /**
  12. * The number of days to fetch.
  13. */
  14. export const FETCH_END_DAYS = 10;
  15. /**
  16. * The number of days to go back when fetching.
  17. */
  18. export const FETCH_START_DAYS = -1;
  19. /**
  20. * The max number of events to fetch from the calendar.
  21. */
  22. export const MAX_LIST_LENGTH = 10;