UNPKG

typemoq

Version:

A simple mocking library for TypeScript

8 lines (7 loc) 232 B
import { IMock } from "./IMock"; import { GlobalType } from "../GlobalMock"; export interface IGlobalMock<T> extends IMock<T> { readonly mock: IMock<T>; readonly type: GlobalType; readonly container: Object; }