Skip to content

EffectDropShadow

src.helpers.effects.EffectDropShadow

Bases: TypedDict

Layer Effect: Drop Shadow

Source code in src\helpers\effects.py
39
40
41
42
43
44
45
46
47
class EffectDropShadow(TypedDict):
    """Layer Effect: Drop Shadow"""
    type: Literal['drop-shadow']
    opacity: NotRequired[Union[float, int]]
    rotation: NotRequired[Union[float, int]]
    distance: NotRequired[Union[float, int]]
    spread: NotRequired[Union[float, int]]
    size: NotRequired[Union[float, int]]
    noise: NotRequired[Union[float, int]]