@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 460 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Clear Up Next
* @section Content Types > Music > Music
* @icon Music
*
* Clears all the music in your Up Next queue.
*
* ```js
* clearUpNext();
* ```
*/
const clearUpNext = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.clearupnext',
WFWorkflowActionParameters: {},
});
exports.default = clearUpNext;
//# sourceMappingURL=clearUpNext.js.map