/** * 重写属性,并尽可能保证不被覆盖。 * * 只支持重写为 value ,不支持重写为 accessor 。 */ export declare function rewriteValue(target: Target, key: Key, createValue: (getCopy: () => Target[Key]) => Target[Key]): () => void;