UNPKG

fancy-test

Version:

extendable utilities for testing

13 lines (12 loc) 289 B
import { Plugin } from './base'; export interface EnvOptions { clear?: boolean; } export interface Env extends Plugin<{ envs: (typeof process.env)[]; }> { } declare const _default: (env: { [k: string]: string | undefined; }, opts?: EnvOptions) => Env; export default _default;