Skip to content

Commit

Permalink
[types] Fix formatting in toGamut.d.ts
Browse files Browse the repository at this point in the history
There was a formatting error here which didn't trigger any eslint errors
locally, but caused problems once merged into main.
  • Loading branch information
MysteryBlokHed committed Feb 18, 2024
1 parent 9c3c65b commit ead82a3
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions types/src/toGamut.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,7 @@ export interface Options {
* `min` indicates the lower limit for black clamping and `max` indicates the upper
* limit for white clamping
*/
blackWhiteClamp?:
| {
channel: Ref;
min: number;
max: number;
}
| undefined;
blackWhiteClamp?: { channel: Ref; min: number; max: number } | undefined;
}

declare namespace toGamut {
Expand Down

0 comments on commit ead82a3

Please sign in to comment.