UNPKG

@joshfarrant/shortcuts-js

Version:
15 lines (14 loc) 421 B
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;