property.d.ts 256 B

12345678910111213
  1. /**
  2. * 返回一个获取对象属性的函数
  3. * @param path 键值
  4. */
  5. export declare function property(path: string | null): Function;
  6. declare module './ctor' {
  7. interface XEUtilsMethods {
  8. property: typeof property;
  9. }
  10. }
  11. export default property