Available from: 2.0.0
Import
import { RichTextSpanAttributeType } from "@supernovaio/sdk"
Cases
The following enumeration cases are available:
- bold: Represents bold text formatting.
- italic: Represents italic text formatting.
- link: Represents a hyperlink.
- strikethrough: Represents strikethrough text formatting.
- code: Represents inline code formatting.
Formal definition
enum RichTextSpanAttributeType {
bold = "Bold",
italic = "Italic",
link = "Link",
strikethrough = "Strikethrough",
code = "Code",
}