UNPKG

kitchen-color-studio

Version:

an open-source color editor for designing color system

18 lines (17 loc) 479 B
/// <reference types="react" /> import type { IScales } from "../config"; export interface IThreeView { config: { autoRotate: boolean; colorType: 'mix' | 'hex' | 'hct' | 'rgb' | 'hsl' | 'hsv' | 'cts'; hueZoom: number; showFloor: boolean; threeZoom: number; }; data: { name: string; scales: IScales; }[]; } declare const ThreeView: import("react").NamedExoticComponent<IThreeView>; export default ThreeView;