( o: unknown, )
| 276 | } |
| 277 | |
| 278 | function isClassConstructor<T>( |
| 279 | o: unknown, |
| 280 | ): o is new (...args: Array<any>) => T { |
| 281 | return typeof o === 'function' && !!o.prototype && !!o.prototype.constructor |
| 282 | } |
no outgoing calls
no test coverage detected