(this: MutableRef<A>)
| 27 | const MutableRefProto: Omit<MutableRef<unknown>, "current"> = { |
| 28 | [TypeId]: TypeId, |
| 29 | toString<A>(this: MutableRef<A>): string { |
| 30 | return format(this.toJSON()) |
| 31 | }, |
| 32 | toJSON<A>(this: MutableRef<A>) { |
| 33 | return { |
| 34 | _id: "MutableRef", |