UNPKG

typemoq

Version:

A simple mocking library for TypeScript

12 lines (9 loc) 308 B
import * as all from "./_all"; import { IUsingResult } from "./IUsing"; import { GlobalScope as GScope } from "../GlobalScope"; export class GlobalScopeApi { static using(...args: all.IGlobalMock<any>[]): IUsingResult { let scope = new GScope(args); return scope; } }