Docs callout type

Available from: 2.0.0

Import


                                                        
                                                        
                                                            import { DocumentationLegacyCalloutType } from "@supernovaio/sdk"
                                                        
                                                            

Cases

The following enumeration cases are available:

  • info: An informational callout.
  • success: A success or positive outcome callout.
  • warning: A warning or cautionary callout.
  • error: An error or problem-related callout.

Formal definition


                                                        
                                                        
                                                            enum DocumentationLegacyCalloutType {
                                                          info = "Info",
                                                          success = "Success",
                                                          warning = "Warning",
                                                          error = "Error",
                                                        }