@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 503 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Get Current Song
* @section Content Types > Music > Music
* @icon Music
*
* Returns the song that is currently playing in the Music app, if any.
*
* ```js
* getCurrentSong();
* ```
*/
const getCurrentSong = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.getcurrentsong',
WFWorkflowActionParameters: {},
});
exports.default = getCurrentSong;
//# sourceMappingURL=getCurrentSong.js.map