@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 344 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Show Definition
* @section Content Types > Text >
* @icon Dictionary
*
* Shows the definition of the word passed into the action.
*
* ```js
* showDefinition();
* ```
*/
declare const showDefinition: () => WFWorkflowAction;
export default showDefinition;