Add HashFiles to the toolkit (#830)

* add hash files to the toolkit
This commit is contained in:
Thomas Boop
2021-06-07 14:26:00 -04:00
committed by GitHub
parent c9af6bb1b3
commit c5e1af5dc3
4 changed files with 200 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/**
* 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
}