Asset format

Describes the format of various assets.

Available from: 2.0.0

Import


                                                        
                                                        
                                                            import { AssetFormat } from "@supernovaio/sdk"
                                                        
                                                            

Cases

The following enumeration cases are available:

  • png: Asset is stored or rendered as PNG.
  • pdf: Asset is stored or rendered as PDF.
  • svg: Asset is stored or rendered as SVG.

Formal definition


                                                        
                                                        
                                                            enum AssetFormat {
                                                          png = "png",
                                                          pdf = "pdf",
                                                          svg = "svg",
                                                        }