📄 map-gamut.d.ts
/home/palash/git/site/node_modules/@csstools/postcss-oklab-function/dist/css-color-4/map-gamut.d.ts
Language: ts • Lines: 5
declare type color = [number, number, number];
export declare function mapGamut(startOKLCH: color, toDestination: (x: color) => color, fromDestination: (x: color) => color): color;
export declare function clip(color: color): color;
export declare function inGamut(x: color): boolean;
export {};