aws-sdk-js-codemod
Version:
Collection of codemod scripts that help update AWS SDK for JavaScript APIs
10 lines (9 loc) • 332 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImportType = void 0;
var ImportType;
(function (ImportType) {
ImportType["REQUIRE"] = "require";
ImportType["IMPORT"] = "import";
ImportType["IMPORT_EQUALS"] = "import-equals";
})(ImportType || (exports.ImportType = ImportType = {}));