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
- OptionalthisArg: any
 - Returns void