mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-26 18:52:52 +00:00
9 lines
357 B
TypeScript
9 lines
357 B
TypeScript
// Type definitions for just-map-values 1.1
|
|
// Project: https://github.com/angus-c/just#readme
|
|
// Definitions by: Roman Lerchster <https://github.com/wa4-fearless-otter>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function map<T extends {}>(item: T, callback: (value: any, key: string, object: T) => any): {};
|
|
|
|
export = map;
|