@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 421 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Make Rich Text from HTML
* @section Content Types > Text > Rich Text
* @icon RichText
*
* Takes the inputted HTML and turns it into rich text, which can then be converted to other formats.
*
* ```js
* makeRichTextFromHTML();
* ```
*/
declare const makeRichTextFromHTML: () => WFWorkflowAction;
export default makeRichTextFromHTML;