mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2024-11-10 14:01:06 +07:00
13 lines
273 B
TypeScript
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;
|
||
|
}
|