Files
toolkit/packages/glob/src/internal-hash-file-options.ts
T

13 lines
258 B
TypeScript
Raw Normal View History

2021-06-07 14:26:00 -04:00
/**
* 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
}