芝麻web文件管理V1.00
编辑当前文件:/home/forge/stage.sksb.smartcon-survey.com/node_modules/std-env/dist/index.d.cts
type EnvObject = Record
; declare const env: EnvObject; declare const nodeENV: string; /** Value of process.platform */ declare const platform: NodeJS.Platform; /** Detect if `CI` environment variable is set or a provider CI detected */ declare const isCI: boolean; /** Detect if stdout.TTY is available */ declare const hasTTY: boolean; /** Detect if global `window` object is available */ declare const hasWindow: boolean; /** Detect if `DEBUG` environment variable is set */ declare const isDebug: boolean; /** Detect if `NODE_ENV` environment variable is `test` */ declare const isTest: boolean; /** Detect if `NODE_ENV` environment variable is `production` */ declare const isProduction: boolean; /** Detect if `NODE_ENV` environment variable is `dev` or `development` */ declare const isDevelopment: boolean; /** Detect if MINIMAL environment variable is set, running in CI or test or TTY is unavailable */ declare const isMinimal: boolean; /** Detect if process.platform is Windows */ declare const isWindows: boolean; /** Detect if process.platform is Linux */ declare const isLinux: boolean; /** Detect if process.platform is macOS (darwin kernel) */ declare const isMacOS: boolean; /** Color Support */ declare const isColorSupported: boolean; /** Node.js versions */ declare const nodeVersion: string | null; declare const nodeMajorVersion: number | null; interface Process extends Partial
> { env: EnvObject; versions: Record
; } declare const process: Process; type ProviderName = "" | "appveyor" | "azure_pipelines" | "azure_static" | "appcircle" | "bamboo" | "bitbucket" | "bitrise" | "buddy" | "buildkite" | "circle" | "cirrus" | "cloudflare_pages" | "codebuild" | "codefresh" | "drone" | "drone" | "dsari" | "github_actions" | "gitlab" | "gocd" | "layerci" | "hudson" | "jenkins" | "magnum" | "netlify" | "nevercode" | "render" | "sail" | "semaphore" | "screwdriver" | "shippable" | "solano" | "strider" | "teamcity" | "travis" | "vercel" | "appcenter" | "codesandbox" | "stackblitz" | "stormkit" | "cleavr"; type ProviderInfo = { name: ProviderName; ci?: boolean; [meta: string]: any; }; /** Current provider info */ declare const providerInfo: ProviderInfo; declare const provider: ProviderName; type RuntimeName = "workerd" | "deno" | "lagon" | "netlify" | "node" | "bun" | "edge-light" | "fastly" | ""; type RuntimeInfo = { name: RuntimeName; }; declare const isNetlify: boolean; declare const isEdgeLight: boolean; declare const isWorkerd: boolean; declare const isDeno: boolean; declare const isLagon: boolean; declare const isNode: boolean; declare const isBun: boolean; declare const isFastly: boolean; declare const runtimeInfo: RuntimeInfo | undefined; declare const runtime: string; export { type EnvObject, type Process, type ProviderInfo, type ProviderName, type RuntimeInfo, type RuntimeName, env, hasTTY, hasWindow, isBun, isCI, isColorSupported, isDebug, isDeno, isDevelopment, isEdgeLight, isFastly, isLagon, isLinux, isMacOS, isMinimal, isNetlify, isNode, isProduction, isTest, isWindows, isWorkerd, nodeENV, nodeMajorVersion, nodeVersion, platform, process, provider, providerInfo, runtime, runtimeInfo };