UNPKG

contentful-migration

Version:
15 lines 431 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TagDeleteAction = void 0; const action_1 = require("./action"); class TagDeleteAction extends action_1.APIAction { constructor(tagId) { super(); this.tagId = tagId; } async applyTo(api) { await api.deleteTag(this.tagId); } } exports.TagDeleteAction = TagDeleteAction; //# sourceMappingURL=tag-delete.js.map