mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-11 22:15:35 +00:00
12 lines
347 B
TypeScript
12 lines
347 B
TypeScript
declare module 'process' {
|
|
export const env: Record<string, string | undefined>
|
|
export const cwd: () => string
|
|
export const exit: (code?: number) => never
|
|
export const argv: string[]
|
|
}
|
|
|
|
declare module 'node:process' {
|
|
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
import path = require('process')
|
|
export = path
|
|
}
|