Files
midi-h5/uni_modules/UniDevTools/node_modules/licia/map.d.ts

15 lines
335 B
TypeScript
Raw Normal View History

2025-08-11 11:51:38 +08:00
import types = require('./types');
declare function map<T, TResult>(
list: types.List<T>,
iterator: types.ListIterator<T, TResult>,
context?: any
): TResult[];
declare function map<T, TResult>(
object: types.Dictionary<T>,
iterator: types.ObjectIterator<T, TResult>,
context?: any
): TResult[];
export = map;