12345678910111213141516171819 |
- import { XEUtilsMethods } from '../xe-utils'
- /**
- * 返回一个获取对象属性的函数
- * @param path 键值
- */
- export declare function property(path: string): Function;
- declare module '../xe-utils' {
- interface XEUtilsMethods {
- /**
- * 返回一个获取对象属性的函数
- * @param path 键值
- */
- property: typeof property;
- }
- }
- export default property
|