2021-06-22 19:18:21 +02:00
|
|
|
/**
|
|
|
|
|
* Indicates whether a pattern matches a path
|
|
|
|
|
*/
|
2026-01-30 13:31:20 +01:00
|
|
|
export var MatchKind;
|
2021-06-22 19:18:21 +02:00
|
|
|
(function (MatchKind) {
|
|
|
|
|
/** Not matched */
|
|
|
|
|
MatchKind[MatchKind["None"] = 0] = "None";
|
|
|
|
|
/** Matched if the path is a directory */
|
|
|
|
|
MatchKind[MatchKind["Directory"] = 1] = "Directory";
|
|
|
|
|
/** Matched if the path is a regular file */
|
|
|
|
|
MatchKind[MatchKind["File"] = 2] = "File";
|
|
|
|
|
/** Matched */
|
|
|
|
|
MatchKind[MatchKind["All"] = 3] = "All";
|
2026-01-30 13:31:20 +01:00
|
|
|
})(MatchKind || (MatchKind = {}));
|
2021-06-22 19:18:21 +02:00
|
|
|
//# sourceMappingURL=internal-match-kind.js.map
|