chronos-ts
Version:
A comprehensive TypeScript library for date and time manipulation, inspired by Carbon PHP. Features immutable API, intervals, periods, timezones, and i18n support.
10 lines (9 loc) • 328 B
TypeScript
/**
* Core classes barrel export
* @module core
*/
export { Chronos } from './chronos';
export { ChronosInterval } from './interval';
export { ChronosPeriod } from './period';
export { ChronosPeriodCollection } from './period-collection';
export { ChronosTimezone, TIMEZONES, Timezones, type TimezoneId, } from './timezone';