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
- for
Each (callbackfn, thisArg?): void Parameters
- callbackfn: ((value: number, key: string, parent: EventCounts) => void)
- (value, key, parent): void
Parameters
- value: number
- key: string
- parent: EventCounts
Returns void
Optional
thisArg: any
Returns void
- callbackfn: ((value: number, key: string, parent: EventCounts) => void)