geostyler
Version:
Framework for styling geodata
12 lines (11 loc) • 371 B
TypeScript
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>;