UNPKG

ts-mock-imports

Version:

Intuitive mocking for Typescript class imports

9 lines (8 loc) 268 B
import { IManager, IModule } from '../types'; export declare class Manager implements IManager { protected module: IModule; protected importName: string; protected original: any; constructor(module: IModule, importName: string); restore(): void; }