solidity-docgen
Version:
Documentation generator for Solidity smart contracts.
4 lines • 383 B
TypeScript
export declare function mapValues<T, U>(obj: Record<string, T>, fn: (value: T) => U): Record<string, U>;
export declare function filterValues<T, U extends T>(obj: Record<string, T>, fn: (value: T) => value is U): Record<string, U>;
export declare function filterValues<T>(obj: Record<string, T>, fn: (value: T) => boolean): Record<string, T>;
//# sourceMappingURL=map-values.d.ts.map