@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 463 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Show in iTunes Store
* @section Content Types > Music > iTunes Store
* @icon iTunes
*
* Shows the iTunes products or App Store apps passed as input in a store sheet. This is useful with the Search iTunes Store and Search App Store actions.
*
* ```js
* showInITunesStore();
* ```
*/
declare const showInITunesStore: () => WFWorkflowAction;
export default showInITunesStore;