Skip to content

Commit

Permalink
🐞 Fix: Types - LayerFilterConfig Add Missing Blur Options
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Jan 1, 2025
1 parent 80f9ce6 commit 8a05dab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/types/LayerFilterConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ export type AnimatableLayerFilterConfig = {
filterName: 'gaussianBlur';
radius: number;
shouldNormalizeEdges: boolean;
shouldNormalizeEdgesToTransparent?: boolean;
shouldUseHardEdges?: boolean;

} | {
filterName: 'colorMatrix';
Expand All @@ -72,6 +74,8 @@ export type AnimatableLayerFilterConfig = {
radius: number;
gradientMask: ImageConfigGradient;
shouldNormalizeEdges: boolean;
shouldNormalizeEdgesToTransparent?: boolean;
shouldUseHardEdges?: boolean;
};

/**
Expand Down

0 comments on commit 8a05dab

Please sign in to comment.