contentful-migration
Version:
Migration tooling for contentful
15 lines • 431 B
JavaScript
;
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