Interface EventCounts

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

    Methods

    Methods

    • Parameters

      • callbackfn: (value: number, key: string, parent: EventCounts) => void
      • OptionalthisArg: any

      Returns void