Available from: 2.0.0
Import
import { DocumentationEnvironment } from "@supernovaio/sdk"
Cases
The following enumeration cases are available:
- live: Represents the "Live" environment. This environment refers to the production or publicly accessible version of a design system system documentation.
- preview: Represents the "Preview" environment. This environment is used for testing and previewing content or changes before they are deployed to the live or production environment..
Formal definition
enum DocumentationEnvironment {
live = "Live",
preview = "Preview",
}