UNPKG

@joshfarrant/shortcuts-js

Version:
20 lines (19 loc) 515 B
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;