interface IMock {
original: object;
mock: {
[key: string]: (mock: any) => void;
};
restore: () => void;
}