(string: string)
| 85 | } |
| 86 | |
| 87 | parse<T = unknown>(string: string): T { |
| 88 | return this.deserialize(JSON.parse(string), { inPlace: true }); |
| 89 | } |
| 90 | |
| 91 | readonly classRegistry = new ClassRegistry(); |
| 92 | registerClass(v: Class, options?: RegisterOptions | string) { |
no test coverage detected