Browse Source

Merge pull request #1062 in VISUAL/fineui from ~TELLER/fineui:typescript to master

* commit '92395854568fa95cec4dc627646c8807503e4e76':
  fix: 描述修改
es6
Teller 5 years ago
parent
commit
df48cb5b39
  1. 4
      typescript/core/base.ts

4
typescript/core/base.ts

@ -44,7 +44,7 @@ export interface _base {
reduceRight: (collection: any[]|object|string, callback?: Function, accumulator?: any, thisArg?: any) => any;
find: (collection: any[]|object|string, callback?: Function|object|string, thisArg?: any) => any;
find: <T>(collection: T[]|object|string, callback?: ((index: number, value: T) => boolean)|object|string, thisArg?: any) => any;
filter: (collection: any[]|object|string, callback?: Function|object|string, thisArg?: any) => any[];
@ -56,7 +56,7 @@ export interface _base {
some: (collection: any[]|object|string, callback?: Function|object|string, thisArg?: any) => boolean;
any: (collection: any[]|object|string, callback?: Function|object|string, thisArg?: any) => boolean;
any: <T>(collection: T[]|object|string, callback?: ((index: number, value: T) => boolean)|object|string, thisArg?: any) => boolean;
max: (collection: any[]|object|string, callback?: Function|object|string, thisArg?: any) => any;

Loading…
Cancel
Save