Farenheith/strict-mocha-describers

View on GitHub
src/types/class-of.ts

Summary

Maintainability
A
0 mins
Test Coverage
// tslint:disable-next-line: no-any
export type ClassOf<T> = (new (...params: any[]) => T) & {
  prototype: T;
  name: string;
};