export interface Job { key: string; exec: () => Promise; } /** * Concurrently executes an array of jobs with string keys and returns a map * of all the results. * * @param jobs Jobs to run. */ export declare function mapFromAsyncJobs(jobs: Job[]): Promise<{ [key: string]: T; }>; //# sourceMappingURL=map-from-async-funcs.d.ts.map