UNPKG

@angular-package/testing

Version:

Jasmine unit testing wrapper with additional custom testing features.

3 lines (2 loc) 216 B
import { Constructor } from "@angular-package/type"; export type IntersectionOfInstances<T extends Constructor<C>[], C = {}> = T extends Array<infer U> ? (U extends Constructor<C> ? InstanceType<U> : never) : never;