@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 356 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Correct Spelling
* @section Content Types > Text > Text Editing
* @icon Text
*
* Autocorrects the spelling of text passed into the action.
*
* ```js
* correctSpelling();
* ```
*/
declare const correctSpelling: () => WFWorkflowAction;
export default correctSpelling;