Support toml rust-toolchain & working-directory

Closes #126
This commit is contained in:
Boaz Berman 2021-04-05 19:12:59 +03:00
parent 88dc235639
commit 00a8bf2bdc
21 changed files with 231 additions and 138 deletions

View file

@ -1,7 +1,7 @@
declare module "mock-env" {
function morph<T>(
callback: () => T,
vars: object,
vars: Record<string, unknown>,
toRemove?: string[]
): any;
): T;
}