UNPKG

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