UNPKG

geostyler

Version:
12 lines (11 loc) 371 B
import { default as React } from 'react'; import { RGBChannel } from 'geostyler-style'; export interface RgbChannelFieldProps { sourceChannelNames?: string[]; onChange?: (channelSelection: RGBChannel) => void; value?: RGBChannel; } /** * RgbChannelField to map different bands to rgb */ export declare const RgbChannelField: React.FC<RgbChannelFieldProps>;