Browse Source

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

* commit '3d412b12c0949796ba01cde990817ef59a40238b':
  Revert "KERNEL-2418 fix: 描述修改"
es6
Teller 5 years ago
parent
commit
ec1142211f
  1. 4
      typescript/core/base.ts

4
typescript/core/base.ts

@ -110,11 +110,11 @@ export interface _base {
int2Abc: (num: number) => string;
// 数组相关的方法
first: <T>(array: T[] | any, callback?: Function|object|number|string, thisArg?: any) => T;
first: <T>(array: T[], callback?: Function|object|number|string, thisArg?: any) => T;
initial: <T>(array: T[], callback?: Function|object|number|string, thisArg?: any) => T[];
last: <T>(array: T[] | any, callback?: Function|object|number|string, thisArg?: any) => T;
last: <T>(array: T[], callback?: Function|object|number|string, thisArg?: any) => T;
rest: <T>(array: T[], callback?: Function|object|number|string, thisArg?: any) => T[];

Loading…
Cancel
Save