1
This commit is contained in:
14
20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/first.d.ts
vendored
Normal file
14
20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/first.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* 获取对象第一个值
|
||||
* @param list 数组
|
||||
*/
|
||||
export declare function first<T>(list: T[] | ArrayLike<T>): T;
|
||||
export declare function first(obj: any): any;
|
||||
|
||||
declare module './ctor' {
|
||||
interface XEUtilsMethods {
|
||||
first: typeof first;
|
||||
}
|
||||
}
|
||||
|
||||
export default first
|
||||
Reference in New Issue
Block a user