export const toMilliseconds = (seconds: string): number =>
  parseInt(seconds) * 1000
