@techmely/utils
Version:
Collection of helpful JavaScript / TypeScript utils
12 lines (9 loc) • 332 B
TypeScript
import { EnvObject } from './env.js';
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 };