@stryker-mutator/core
Version:
The extendable JavaScript mutation testing framework
11 lines • 337 B
TypeScript
/**
* A class that lets you manipulate env variables and reset them after a test
*/
export declare class EnvironmentVariableStore {
private readonly originals;
private store;
set(key: string, value: string): void;
unset(key: string): void;
restore(): void;
}
//# sourceMappingURL=environment-variable-store.d.ts.map