Cycle
import { Cycle } from "https://raw.githubusercontent.com/EthanThatOneKid/pomo/main/mod.ts";
A Cycle is an array of numbers that repeat indefinitely.
class Cycle { }
constructor(periods: number[]);
public readonly data: number[];
public readonly total: number;
public at(n: number): number;
public next(i: number, count?): number;