Repository URL to install this package:
|
Version:
3.0.2 ▾
|
@skava/state
/
globals.node.d.ts
|
|---|
/**
* @note - this extends process & globals
* the same as any other types file
* it will add another type def in the list
*/
declare namespace NodeJS {
interface OneUrl {
userAgent?: string
[key: string]: any
}
interface Global {
oneUrl?: OneUrl
process: Process
}
interface ProcessEnv {
DEVTOOLS_GLOBALS_APPLICATION_ENABLED?: 'true' | 'false' | undefined
}
interface Process {
env: ProcessEnv
}
}