kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
31 lines (30 loc) • 960 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.ForwardRefExoticComponent<{
options: {
type: string;
name: string;
disabled: boolean;
}[];
onBlur?: (() => void) | undefined;
onSelect: (type: any) => void;
onOpen?: (() => void) | undefined;
} & {
theme?: any;
}>;
declare namespace EffectTypeSelectorFactory {
var deps: (typeof EffectTypeListItemFactory | typeof EffectTypeDropdownListFactory)[];
}
export default EffectTypeSelectorFactory;