```ts import { ONE_SECOND_MS, ONE_MINUTE_MS, ONE_MINUTE_S } from 'const-durations'
npm install const-durations``ts
import { ONE_SECOND_MS, ONE_MINUTE_MS, ONE_MINUTE_S } from 'const-durations'
ONE_SECOND_MS // 1000
ONE_MINUTE_MS // 60000
ONE_MINUTE_S // 60
``