(instance: any)
| 46 | } |
| 47 | |
| 48 | static asyncConstructor(instance: any): instance is AsyncConstructor<any> { |
| 49 | return typeof instance === 'function' && !!instance.class && is.Constructor(instance.class); |
| 50 | } |
| 51 | |
| 52 | static array(instance: any): instance is any[] { |
| 53 | return Array.isArray(instance); |
no test coverage detected