This commit is contained in:
eric sciple
2019-12-31 10:16:18 -05:00
committed by GitHub
parent a94e2440cb
commit a11539e1db
16 changed files with 3065 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/**
* 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
}