set.d.ts 336 B

123456789101112131415
  1. /**
  2. * 设置对象属性上的值。如果属性不存在则创建它
  3. * @param obj 对象
  4. * @param property 键、路径
  5. * @param value 值
  6. */
  7. export declare function set(obj: any, property: string | string[], value: any): any;
  8. declare module './ctor' {
  9. interface XEUtilsMethods {
  10. set: typeof set;
  11. }
  12. }
  13. export default set