fuse-box
Version:
Fuse-Box a bundler that does it right
11 lines (10 loc) • 433 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImportType = void 0;
var ImportType;
(function (ImportType) {
ImportType[ImportType["REQUIRE"] = 1] = "REQUIRE";
ImportType[ImportType["FROM"] = 2] = "FROM";
ImportType[ImportType["RAW_IMPORT"] = 3] = "RAW_IMPORT";
ImportType[ImportType["DYNAMIC"] = 4] = "DYNAMIC";
})(ImportType = exports.ImportType || (exports.ImportType = {}));
;