Page MenuHomePhorge

process.d.ts
No OneTemporary

Size
413 B
Referenced Files
None
Subscribers
None

process.d.ts

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

File Metadata

Mime Type
text/plain
Expires
Sun, May 3, 7:27 AM (13 h, 29 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
517851
Default Alt Text
process.d.ts (413 B)

Event Timeline