dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
10 lines • 403 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.untagResources = void 0;
const untagResources = ({ httpClient, }) => ({ tag_name, resources, }) => {
const url = `/tags/${tag_name}/resources`;
const body = { resources };
return httpClient.delete(url, { data: body });
};
exports.untagResources = untagResources;
//# sourceMappingURL=untag-resources.js.map