Constructs a Type that represents a map with string keys and uniform values
Signature:
export declare function mapType<T>(valueType: Type<T>): Type<Map<string, T>>;
Parameter | Type | Description |
---|---|---|
valueType | Type<T> | Type of values |
Returns:
Type<Map<string, T>>