Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/timers/src/Timer.ts>TimerOptions

All timing functions you need - for Deno and the browser
Go to Latest
interface TimerOptions
import { type TimerOptions } from "https://deno.land/x/timers@v0.2.0/src/Timer.ts";

Type Parameters

optional
T extends any[] = any[]

Properties

optional
args: T
optional
signal: AbortSignal
optional
persistent: boolean

Indicates whether the process should continue to run as long as the timer exists. This is true by default.

optional
silent: boolean