UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

12 lines (9 loc) 333 B
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 };