(base: T, key: string)
| 379 | } |
| 380 | |
| 381 | function decorateObject<T>(base: T, key: string): T { |
| 382 | return decorateEntity(base, key, 'object'); |
| 383 | } |
| 384 | |
| 385 | function decorateClass(base: any, key: string) { |
| 386 | return decorateEntity(base, key, 'function'); |
no test coverage detected