ooafs
Version:
Type-safe Object-Oriented Async FileSystem
11 lines (10 loc) • 389 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var EntryType;
(function (EntryType) {
// First element is 1, so all values are truthy
EntryType[EntryType["FILE"] = 1] = "FILE";
EntryType[EntryType["DIRECTORY"] = 2] = "DIRECTORY";
EntryType[EntryType["UNKNOWN"] = 3] = "UNKNOWN";
})(EntryType || (EntryType = {}));
exports.default = EntryType;