Interface EventCounts
interface EventCounts {
forEach(
callbackfn: (value: number, key: string, parent: EventCounts) => void,
thisArg?: any,
): void;
}
forEach(
callbackfn: (value: number, key: string, parent: EventCounts) => void,
thisArg?: any,
): void;
}
Index
Methods
Methods
forEach
- forEach(
callbackfn: (value: number, key: string, parent: EventCounts) => void,
thisArg?: any,
): void Parameters
- callbackfn: (value: number, key: string, parent: EventCounts) => void
Optional
thisArg: any
Returns void