effect-io-ai

Package: effect
Module: Duration

Duration.hours

Creates a Duration from hours.

Example (Creating durations from hours)

import { Duration } from "effect"

const duration = Duration.hours(2)
console.log(Duration.toMillis(duration)) // 7200000

Signature

declare const hours: (hours: number) => Duration

Source

Since v2.0.0