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