Files
codeql-action/node_modules/@actions/glob/lib/internal-hash-file-options.d.ts
2024-10-29 12:06:48 +00:00

13 lines
273 B
TypeScript

/**
* Options to control globbing behavior
*/
export interface HashFileOptions {
/**
* Indicates whether to follow symbolic links. Generally should set to false
* when deleting files.
*
* @default true
*/
followSymbolicLinks?: boolean;
}