Permalink
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/global-dirs/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.
60 lines (46 sloc)
1.26 KB
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
declare namespace globalDirectories { | |
interface GlobalDirectories { | |
/** | |
Directory with globally installed packages. | |
Equivalent to `npm root --global`. | |
*/ | |
readonly packages: string; | |
/** | |
Directory with globally installed binaries. | |
Equivalent to `npm bin --global`. | |
*/ | |
readonly binaries: string; | |
/** | |
Directory with directories for packages and binaries. You probably want either of the above. | |
Equivalent to `npm prefix --global`. | |
*/ | |
readonly prefix: string; | |
} | |
} | |
declare const globalDirectories: { | |
/** | |
Get the directory of globally installed packages and binaries. | |
@example | |
``` | |
import globalDirectories = require('global-dirs'); | |
console.log(globalDirectories.npm.prefix); | |
//=> '/usr/local' | |
console.log(globalDirectories.npm.packages); | |
//=> '/usr/local/lib/node_modules' | |
``` | |
*/ | |
readonly npm: globalDirectories.GlobalDirectories; | |
/** | |
Get the directory of globally installed packages and binaries. | |
@example | |
``` | |
import globalDirectories = require('global-dirs'); | |
console.log(globalDirectories.npm.binaries); | |
//=> '/usr/local/bin' | |
console.log(globalDirectories.yarn.packages); | |
//=> '/Users/sindresorhus/.config/yarn/global/node_modules' | |
``` | |
*/ | |
readonly yarn: globalDirectories.GlobalDirectories; | |
} | |
export = globalDirectories; |