mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 16:30:58 -05:00
31 lines
378 B
TypeScript
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
|
|
}
|
|
]
|