UNPKG

438 BTypeScriptView Raw
1import type { Fakes } from './Fakes';
2/**
3 * Proxies the objects to fallback to fake, when it exists.
4 */
5export declare class IocProxyObject {
6 namespace: string;
7 value: any;
8 options: Fakes;
9 constructor(namespace: string, value: any, options: Fakes);
10}
11/**
12 * Proxies the class constructor to fallback to fake, when it exists.
13 */
14export declare function IocProxyClass(namespace: string, value: any, options: Fakes): any;