Text case

Text case options.

Available from: 2.0.0

Import


                                                        
                                                        
                                                            import { TextCase } from "@supernovaio/sdk"
                                                        
                                                            

Cases

The following enumeration cases are available:

  • original: Represents the original text case.
  • upper: Represents uppercase text case.
  • lower: Represents lowercase text case.
  • camel: Represents camelCase text case.
  • smallCaps: Represents small caps text case.

Formal definition


                                                        
                                                        
                                                            enum TextCase {
                                                          original = "Original",
                                                          upper = "Upper",
                                                          lower = "Lower",
                                                          camel = "Camel",
                                                          smallCaps = "SmallCaps",
                                                        }