@techmely/utils
Version:
Collection of helpful JavaScript / TypeScript utils
12 lines (9 loc) • 333 B
text/typescript
import { EnvObject } from './env.mjs';
interface Process extends Partial<Omit<typeof globalThis.process, "versions">> {
env: EnvObject;
versions: Record<string, string>;
}
declare const _process: Process;
declare const process: Process;
declare const platform: string;
export { type Process, _process, platform, process };