Text decoration

Text decoration options.

Available from: 2.0.0

Import


                                                        
                                                        
                                                            import { TextDecoration } from "@supernovaio/sdk"
                                                        
                                                            

Cases

The following enumeration cases are available:

  • original: Represents no text decoration.
  • underline: Represents text with an underline decoration.
  • strikethrough: Represents text with a strikethrough decoration.

Formal definition


                                                        
                                                        
                                                            enum TextDecoration {
                                                          original = "None",
                                                          underline = "Underline",
                                                          strikethrough = "Strikethrough",
                                                        }