@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines (19 loc) • 515 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Post on Instagram
* @section Content Types > Sharing > Instagram
* @icon Instagram
*
* Opens the photo passed into this action in the Instagram app and copies the caption to the clipboard.
*
* ```js
* postOnInstagram({
* caption: 'My caption',
* });
* ```
*/
declare const postOnInstagram: ({ caption, }: {
/** Photo caption */
caption?: string | undefined;
}) => WFWorkflowAction;
export default postOnInstagram;