@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 338 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Skip Forward
* @section Content Types > Music > Playback
* @icon FastForward
*
* Skips to the next song in the current music queue.
*
* ```js
* skipForward();
* ```
*/
declare const skipForward: () => WFWorkflowAction;
export default skipForward;