Browse Source

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

* commit '3f15290c917ffaf17246d2db8b6739c7cece8dba':
  feat: 优化描述
  fix: 类型错误
es6
Teller 5 years ago
parent
commit
519ad55940
  1. 8
      typescript/core/base.ts

8
typescript/core/base.ts

@ -108,11 +108,11 @@ export interface _base {
int2Abc: (num: number) => string;
// 数组相关的方法
first: (array: any[], callback?: Function|object|number|string, thisArg?: any) => any;
first: <T>(array: T[], callback?: Function|object|number|string, thisArg?: any) => T;
initial: (array: any[], callback?: Function|object|number|string, thisArg?: any) => any[];
last: (array: any[], callback?: Function|object|number|string, thisArg?: any) => any;
last: <T>(array: T[], callback?: Function|object|number|string, thisArg?: any) => T;
rest: (array: any[], callback?: Function|object|number|string, thisArg?: any) => any[];
@ -156,7 +156,7 @@ export interface _base {
makeArrayByArray: (array: any[], value: any) => any[];
uniq: (array: any[], isSorted?: boolean, iteratee?: any, context?: any) => any[];
uniq: <T>(array: T[], isSorted?: boolean, iteratee?: any, context?: any) => T[];
// 对象相关方法
keys: (object: object) => string[];
@ -349,7 +349,7 @@ export interface _base {
isNotEmptyString: (string: string) => boolean;
isEmptyString: (string: string) => boolean;
isEmptyString: (string: any) => boolean;
encrypt: (type: string, text: string, key: string) => string;

Loading…
Cancel
Save