kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
20 lines (19 loc) • 741 B
TypeScript
import React from 'react';
import EffectTypeDropdownListFactory from './effect-type-dropdown-list';
import EffectTypeListItemFactory from './effect-type-list-item';
export declare type EffectTypeSelectorProps = {
options: {
type: string;
name: string;
disabled: boolean;
}[];
onSelect: (type: any) => void;
theme: any;
onBlur?: () => void;
onOpen?: () => void;
};
declare function EffectTypeSelectorFactory(EffectTypeListItem: any, EffectTypeDropdownList: any): React.FC<Omit<EffectTypeSelectorProps, "theme">>;
declare namespace EffectTypeSelectorFactory {
var deps: (typeof EffectTypeListItemFactory | typeof EffectTypeDropdownListFactory)[];
}
export default EffectTypeSelectorFactory;