Permalink
Cannot retrieve contributors at this time
29 lines (29 sloc)
853 Bytes
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/@actions/glob/lib/internal-glob-options.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
/** | |
* Options to control globbing behavior | |
*/ | |
export interface GlobOptions { | |
/** | |
* Indicates whether to follow symbolic links. Generally should set to false | |
* when deleting files. | |
* | |
* @default true | |
*/ | |
followSymbolicLinks?: boolean; | |
/** | |
* Indicates whether directories that match a glob pattern, should implicitly | |
* cause all descendant paths to be matched. | |
* | |
* For example, given the directory `my-dir`, the following glob patterns | |
* would produce the same results: `my-dir/**`, `my-dir/`, `my-dir` | |
* | |
* @default true | |
*/ | |
implicitDescendants?: boolean; | |
/** | |
* Indicates whether broken symbolic should be ignored and omitted from the | |
* result set. Otherwise an error will be thrown. | |
* | |
* @default true | |
*/ | |
omitBrokenSymbolicLinks?: boolean; | |
} |