You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set: (_target: any,property: PropertyKey,_value: any)=>{thrownewError(`TypeError: Cannot assign to read only property '${String(property)}' of object`);},
289
+
deleteProperty: (_target: any,property: PropertyKey)=>{thrownewError(`TypeError: Cannot delete read only property '${String(property)}' of object`);},
290
+
defineProperty: (_target: any,property: PropertyKey)=>{thrownewError(`TypeError: Cannot define property '${String(property)}' for a readonly object`);},
291
291
setPrototypeOf: (_target: any)=>{thrownewError(`TypeError: Cannot set prototype for a readonly object`);},
0 commit comments