setup-bun/node_modules/@actions/glob/lib/internal-hash-file-options.d.ts

13 lines
273 B
TypeScript
Raw Normal View History

2023-02-22 17:47:24 -08: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;
}