(description)
| 332 | return readonly(this); |
| 333 | }, |
| 334 | describe(description) { |
| 335 | const cl = this.clone(); |
| 336 | core.globalRegistry.add(cl, { description }); |
| 337 | return cl; |
| 338 | }, |
| 339 | meta(...args: any[]): any { |
| 340 | // overloaded: meta() returns the registered metadata, meta(data) |
| 341 | // returns a clone with `data` registered. The mapped type picks |