mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2024-11-10 05:51:07 +07:00
14 lines
284 B
TypeScript
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
|
||
|
}
|