Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Timing

import type { Timing } from "https://raw.githubusercontent.com/EthanThatOneKid/pomo/main/pomo.ts";

A timing is a set of periods and an interval.

interface Timing {
interval: number;
periods: {
index: number;
timeout: number;
}
[]
;
}

§Properties

§
interval: number
[src]
§
periods: {
index: number;
timeout: number;
}
[]
[src]