@typed/fp
Version:
Data Structures and Resources for fp-ts
10 lines • 304 B
TypeScript
/**
* @typed/fp/struct is an extension of fp-ts/struct with an additional constructor.
* @since 0.9.2
* @category Constructor
*/
export declare function make<K extends PropertyKey, V>(key: K, value: V): {
readonly [_ in K]: V;
};
export * from 'fp-ts/struct';
//# sourceMappingURL=struct.d.ts.map