This commit is contained in:
16
node_modules/licia/reduce.d.ts
generated
vendored
Normal file
16
node_modules/licia/reduce.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import types = require('./types');
|
||||
|
||||
declare function reduce<T, TResult>(
|
||||
list: types.List<T>,
|
||||
iterator: types.MemoIterator<T, TResult>,
|
||||
memo?: TResult,
|
||||
context?: any
|
||||
): TResult;
|
||||
declare function reduce<T, TResult>(
|
||||
list: types.Dictionary<T>,
|
||||
iterator: types.MemoObjectIterator<T, TResult>,
|
||||
memo?: TResult,
|
||||
context?: any
|
||||
): TResult;
|
||||
|
||||
export = reduce;
|
||||
Reference in New Issue
Block a user