mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-23 05:19:07 +08:00
13 lines
258 B
TypeScript
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
|
|
}
|