Page MenuHomePhorge

process.d.ts
No OneTemporary

Size
292 B
Referenced Files
None
Subscribers
None

process.d.ts

type ProcessEnv = {
[key: string]: string | undefined;
} & { toObject(): Record<string, string> };
interface Process {
env: ProcessEnv;
argv: string[];
pid: number;
platform: string;
arch: string;
exit(code?: number): never;
cwd(): string;
}
declare const process: Process;

File Metadata

Mime Type
text/plain
Expires
Sat, Aug 1, 2:30 PM (12 h, 22 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
589822
Default Alt Text
process.d.ts (292 B)

Event Timeline