public_api.d.ts 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. import './units/index';
  2. export { add, subtract } from './moment/add-subtract';
  3. export { getDay, isFirstDayOfWeek, isSameYear, isSameDay, isSameMonth, getFullYear, getFirstDayOfMonth, getMonth } from './utils/date-getters';
  4. export { parseDate } from './create/local';
  5. export { utcAsLocal } from './create/local';
  6. export { formatDate } from './format';
  7. export { listLocales, getLocale, updateLocale, defineLocale, getSetGlobalLocale } from './locale/locales';
  8. export { LocaleData } from './locale/locale.class';
  9. export { isAfter, isBefore, isDisabledDay, isSame } from './utils/date-compare';
  10. export { isArray, isDateValid, isDate } from './utils/type-checks';
  11. export { shiftDate, setFullDate } from './utils/date-setters';
  12. export { endOf, startOf } from './utils/start-end-of';
  13. export { TimeUnit } from './types';
  14. export { arLocale } from './i18n/ar';
  15. export { bgLocale } from './i18n/bg';
  16. export { caLocale } from './i18n/ca';
  17. export { csLocale } from './i18n/cs';
  18. export { daLocale } from './i18n/da';
  19. export { deLocale } from './i18n/de';
  20. export { enGbLocale } from './i18n/en-gb';
  21. export { esDoLocale } from './i18n/es-do';
  22. export { esLocale } from './i18n/es';
  23. export { esUsLocale } from './i18n/es-us';
  24. export { etLocale } from './i18n/et';
  25. export { fiLocale } from './i18n/fi';
  26. export { frLocale } from './i18n/fr';
  27. export { glLocale } from './i18n/gl';
  28. export { heLocale } from './i18n/he';
  29. export { hiLocale } from './i18n/hi';
  30. export { huLocale } from './i18n/hu';
  31. export { hrLocale } from './i18n/hr';
  32. export { idLocale } from './i18n/id';
  33. export { itLocale } from './i18n/it';
  34. export { jaLocale } from './i18n/ja';
  35. export { koLocale } from './i18n/ko';
  36. export { ltLocale } from './i18n/lt';
  37. export { lvLocale } from './i18n/lv';
  38. export { mnLocale } from './i18n/mn';
  39. export { nbLocale } from './i18n/nb';
  40. export { nlBeLocale } from './i18n/nl-be';
  41. export { nlLocale } from './i18n/nl';
  42. export { plLocale } from './i18n/pl';
  43. export { ptBrLocale } from './i18n/pt-br';
  44. export { roLocale } from './i18n/ro';
  45. export { ruLocale } from './i18n/ru';
  46. export { skLocale } from './i18n/sk';
  47. export { slLocale } from './i18n/sl';
  48. export { svLocale } from './i18n/sv';
  49. export { thLocale } from './i18n/th';
  50. export { trLocale } from './i18n/tr';
  51. export { ukLocale } from './i18n/uk';
  52. export { viLocale } from './i18n/vi';
  53. export { zhCnLocale } from './i18n/zh-cn';