UNPKG

@angular-package/testing

Version:

Jasmine unit testing wrapper with additional custom testing features.

4 lines (3 loc) 222 B
import { PrototypeOf } from "./prototype-of.type"; import { UnionToIntersection } from "./union-to-intersection.type"; export type ArrayToObject<T> = T extends Array<infer R> ? UnionToIntersection<PrototypeOf<R>> : never;