Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/first.d.ts

15 lines
276 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
*
* @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