/** * Interface defining an object with a known property type */ export interface ITypedHash { [key: string]: T; } /** * Converts the supplied object to a map * * @param o The object to map */ export declare function objectToMap(o: any): Map; /** * Merges to Map instances together, overwriting values in target with matching keys, last in wins * * @param target map into which the other maps are merged * @param maps One or more maps to merge into the target */ export declare function mergeMaps(target: Map, ...maps: Map[]): Map; //# sourceMappingURL=collections.d.ts.map