mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-11-18 23:01:07 +08:00
17 lines
278 B
TypeScript
17 lines
278 B
TypeScript
/**
|
|
* Indicates whether a pattern matches a path
|
|
*/
|
|
export enum MatchKind {
|
|
/** Not matched */
|
|
None = 0,
|
|
|
|
/** Matched if the path is a directory */
|
|
Directory = 1,
|
|
|
|
/** Matched if the path is a regular file */
|
|
File = 2,
|
|
|
|
/** Matched */
|
|
All = Directory | File
|
|
}
|