UNPKG

@nepwork/dashboards

Version:

Dashboards for emergencies and monitoring

11 lines (10 loc) 396 B
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ export declare const batch: <T>(target: T[], batchSize: number, offset?: number) => T[][]; /** * returns array with numbers from zero to bound. * */ export declare const range: <T>(bound: number, producer?: (number: any) => T) => any[];