UNPKG

coolant

Version:

The modular build radiator

5 lines (4 loc) 179 B
export interface ObjectMap<T> { readonly [key: string]: T; } export declare const toObjectMap: <T>(objects: readonly T[], keySelector: (object: T) => string) => ObjectMap<T>;