/** 创建对象的代理 const newObj = createProxy(obj,{ // 读取对象之前 onReadBefore:(key,value)=>{} }) * * */ type CreateProxyOptions = {}; declare function createProxy = Record>(obj: object, options?: CreateProxyOptions): object; export { type CreateProxyOptions, createProxy };