UNPKG

typemoq

Version:

A simple mocking library for TypeScript

9 lines (8 loc) 165 B
export type Ctor<T> = { new (): T; prototype: Object; } export type CtorWithArgs<T> = { new (...ctorArgs: any[]): T; prototype: Object; }