@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 476 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Skip Forward
* @section Content Types > Music > Playback
* @icon FastForward
*
* Skips to the next song in the current music queue.
*
* ```js
* skipForward();
* ```
*/
const skipForward = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.skipforward',
WFWorkflowActionParameters: {},
});
exports.default = skipForward;
//# sourceMappingURL=skipForward.js.map