///
///
type Environments = import('./src/types.ts').Environments
declare module 'global' {
namespace NodeJS {
export interface ProcessEnv extends Partial> {}
}
}
/**
* `tsconfig.json`
* @example
"compilerOptions": {
___ "types": ["@kubb/swagger-client/globals"]
}
* @example implementation
{
___ env?: NodeJS.ProcessEnv
}
*/
declare namespace NodeJS {
export interface ProcessEnv extends Partial> {}
}