Skip to content

EffectGradientOverlay

src.helpers.effects.EffectGradientOverlay

Bases: TypedDict

Layer Effect: Drop Shadow

Source code in src\helpers\effects.py
57
58
59
60
61
62
63
64
class EffectGradientOverlay(TypedDict):
    """Layer Effect: Drop Shadow"""
    type: Literal['gradient-overlay']
    size: NotRequired[int]
    scale: NotRequired[int]
    rotation: NotRequired[int]
    opacity: NotRequired[int]
    colors: list[EffectGradientColor]