import { Constructor } from "@angular-package/type";
export type InstanceOfConstructor<T> = T extends Constructor<infer I> ? I : never;
