send-mail/node_modules/@actions/glob/lib/internal-match-kind.d.ts

14 lines
284 B
TypeScript
Raw Normal View History

2021-06-23 00:18:21 +07:00
/**
* 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
}