Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/state / globals.node.d.ts
Size: Mime:
/**
 * @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
  }
}