UNPKG

geostyler

Version:
10 lines (9 loc) 362 B
import { default as React } from 'react'; import { SelectProps } from 'antd'; export type ChannelSelectionFieldProps = { channelOptions?: string[]; } & Omit<SelectProps<string>, 'options'>; /** * ChannelSelectionField to select between different ChannelSelection options */ export declare const ChannelSelectionField: React.FC<ChannelSelectionFieldProps>;