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

15 lines
329 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
*
* @param obj
* @param property
*/
export declare function has(obj: any, property: undefined | null | number | number[] | string | string[]): boolean;
declare module './ctor' {
interface XEUtilsMethods {
has: typeof has;
}
}
export default has