send-mail/node_modules/@actions/glob/lib/internal-match-kind.d.ts
2021-07-13 18:20:02 +02:00

14 lines
284 B
TypeScript

/**
* Indicates whether a pattern matches a path
*/
export declare 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 = 3
}