get.d.ts 367 B

123456789101112131415
  1. /**
  2. * 获取对象的属性的值,如果值为 undefined,则返回默认值
  3. * @param obj 对象
  4. * @param property 键、路径
  5. * @param defaultValue 默认值
  6. */
  7. export declare function get(obj: any, property: string | string[], defaultValue?: any): any;
  8. declare module './ctor' {
  9. interface XEUtilsMethods {
  10. get: typeof get;
  11. }
  12. }
  13. export default get