rangoo94/bestest

View on GitHub
packages/detect-environment/lib/interfaces/EnvironmentDetailsInterface.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { EnvironmentType } from './EnvironmentType'
import { NodejsEnvironmentDetailsInterface } from './NodejsEnvironmentDetailsInterface'
import { BrowserEnvironmentDetailsInterface } from './BrowserEnvironmentDetailsInterface'

interface EnvironmentDetailsInterface {
  environment: EnvironmentType
  nodejs: NodejsEnvironmentDetailsInterface
  browser: BrowserEnvironmentDetailsInterface
}

export {
  EnvironmentDetailsInterface
}