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

EventCounts

interface EventCounts {
forEach(callbackfn: (
value: number,
key: string,
parent: EventCounts,
) => void
, thisArg?: any): void;
}
var EventCounts: {
prototype: EventCounts;
new (): EventCounts;
}
;

§Methods

§
forEach(callbackfn: (
value: number,
key: string,
parent: EventCounts,
) => void
, thisArg?: any): void
[src]