Browse Source

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

* commit 'a9ae1737d9f3c7b3a5b05d1290553bb2c79bd599':
  KERNEL-2418 fix: 描述修改
es6
Teller 5 years ago
parent
commit
fb6012336c
  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[], callback?: Function|object|number|string, thisArg?: any) => T;
first: <T>(array: T[] | any, callback?: Function|object|number|string, thisArg?: any) => T;
initial: <T>(array: T[], callback?: Function|object|number|string, thisArg?: any) => T[];
last: <T>(array: T[], callback?: Function|object|number|string, thisArg?: any) => T;
last: <T>(array: T[] | any, callback?: Function|object|number|string, thisArg?: any) => T;
rest: <T>(array: T[], callback?: Function|object|number|string, thisArg?: any) => T[];

Loading…
Cancel
Save