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

PomoCollection

import { PomoCollection } from "https://raw.githubusercontent.com/EthanThatOneKid/pomo/main/mod.ts";
class PomoCollection<Key extends string = string> {
constructor(data?: Record<Key, Pomo>);
public at(n: number): Array<[Key, PomoStamp]>;
public timings(n: number): Array<[Key, Timing]>;
 
static public fromString(patterns: string, ref: number): PomoCollection;
}

§Type Parameters

§
Key extends string = string
[src]

§Constructors

§
new PomoCollection(data?: Record<Key, Pomo>)
[src]

§Methods

§
at(n: number): Array<[Key, PomoStamp]>
[src]
§
timings(n: number): Array<[Key, Timing]>
[src]

§Static Methods

§
fromString(patterns: string, ref: number): PomoCollection
[src]