1
0
Fork 0
toolkit/packages/glob/src/internal-hash-file-options.ts

13 lines
258 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
}