Permalink
Cannot retrieve contributors at this time
40 lines (32 sloc)
1.01 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/path-key/index.d.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <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; |