effect-io-ai

Package: effect
Module: Duration

Duration.weeks

Creates a Duration from weeks.

Example (Creating durations from weeks)

import { Duration } from "effect"

const duration = Duration.weeks(1)
console.log(Duration.toMillis(duration)) // 604800000

Signature

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

Source

Since v2.0.0