1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 16:30:59 -04:00
Daggerbot-TS/src/timeNames.ts
2022-11-14 08:58:24 +11:00

31 lines
378 B
TypeScript

export default [
{
name: 'year',
length: 1000 * 60 * 60 * 24 * 365
},
{
name: 'month',
length: 1000 * 60 * 60 * 24 * 30
},
{
name: 'week',
length: 1000 * 60 * 60 * 24 * 7
},
{
name: 'day',
length: 1000 * 60 * 60 * 24
},
{
name: 'hour',
length: 1000 * 60 * 60
},
{
name: 'minute',
length: 1000 * 60
},
{
name: 'second',
length: 1000
}
]