Available from: 2.0.0
Import
import { BlurType } from "@supernovaio/sdk"
Cases
The following enumeration cases are available:
- layer: Represents the "Layer" blur type. When applied, this type of blur is typically used to blur only the content within a specific layer or element, leaving the background unaffected.
- background: Represents the "Background" blur type. When applied, this type of blur is typically used to blur the entire background, creating a frosted glass effect or a sense of depth in the user interface.
Formal definition
enum BlurType {
layer = "Layer",
background = "Background",
}