UNPKG

geostyler

Version:
13 lines (12 loc) 506 B
import { default as React } from 'react'; import { InterpolationMode } from 'chroma-js'; import { Rule } from 'geostyler-style'; import { ModalProps } from 'antd'; export interface RuleGeneratorWindowProps extends Partial<ModalProps> { onClose?: () => void; onRulesChange?: (rules: Rule[]) => void; colorRamps?: Record<string, string[]>; useBrewerColorRamps?: boolean; colorSpaces?: (InterpolationMode)[]; } export declare const RuleGeneratorWindow: React.FC<RuleGeneratorWindowProps>;