(v: Class, options?: RegisterOptions | string)
| 90 | |
| 91 | readonly classRegistry = new ClassRegistry(); |
| 92 | registerClass(v: Class, options?: RegisterOptions | string) { |
| 93 | this.classRegistry.register(v, options); |
| 94 | } |
| 95 | |
| 96 | readonly symbolRegistry = new Registry<Symbol>(s => s.description ?? ''); |
| 97 | registerSymbol(v: Symbol, identifier?: string) { |
no test coverage detected