@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 359 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @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();
* ```
*/
declare const getCurrentSong: () => WFWorkflowAction;
export default getCurrentSong;