diff --git a/types/src/interpolation.d.ts b/types/src/interpolation.d.ts index e50b35762..001f64abc 100644 --- a/types/src/interpolation.d.ts +++ b/types/src/interpolation.d.ts @@ -2,7 +2,7 @@ import Color, { ColorTypes } from "./color"; import ColorSpace from "./space"; import { Methods } from "./deltaE/index"; -export type Range = ((percentage: number) => number) & { +export type Range = ((percentage: number) => Color) & { rangeArgs: { colors: [Color, Color]; options: Record }; };