geostyler
Version:
Framework for styling geodata
12 lines (11 loc) • 393 B
TypeScript
import { default as React } from 'react';
export interface SourceChannelNameFieldProps {
placeholder?: string;
sourceChannelNames?: string[];
onChange?: (sourceChannelName: string) => void;
value?: string;
}
/**
* SourceChannelNameField to select between different source channel options
*/
export declare const SourceChannelNameField: React.FC<SourceChannelNameFieldProps>;