@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 502 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Correct Spelling
* @section Content Types > Text > Text Editing
* @icon Text
*
* Autocorrects the spelling of text passed into the action.
*
* ```js
* correctSpelling();
* ```
*/
const correctSpelling = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.correctspelling',
WFWorkflowActionParameters: {},
});
exports.default = correctSpelling;
//# sourceMappingURL=correctSpelling.js.map