Allow to override toolchain from rust-toolchain file

This commit is contained in:
Thomas Eizinger 2019-12-10 20:56:35 +01:00
parent e2aeba25b2
commit d39c7183f3
No known key found for this signature in database
GPG key ID: 651AC83A6C6C8B96
7 changed files with 140 additions and 29 deletions

7
types/mock-env/index.d.ts vendored Normal file
View file

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