@thisisagile/easy
Version:
Straightforward library for building domain-driven microservice architectures
25 lines (23 loc) • 421 B
text/typescript
export const period = [
'today',
'yesterday',
'tomorrow',
'this-week',
'last-seven-days',
'last-week',
'last-two-weeks',
'next-week',
'this-month',
'last-month',
'two-months-ago',
'three-months-ago',
'last-three-months',
'next-month',
'this-year',
'last-year',
'two-years-ago',
'three-years-ago',
'next-year',
'all-time',
] as const;
export type Period = (typeof period)[number];