UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

11 lines 453 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.disableDropletBackups = void 0; const disableDropletBackups = ({ httpClient, }) => ({ droplet_id, }) => { const url = `/droplets/${droplet_id}/actions`; const type = 'disable_backups'; const body = { type }; return httpClient.post(url, body); }; exports.disableDropletBackups = disableDropletBackups; //# sourceMappingURL=disable-droplet-backups.js.map