opendash
Version:
open.DASH data visualization framework
11 lines (10 loc) • 495 B
TypeScript
import * as React from "react";
import { DataItemHistorySelectionInterface, DataItemDimensionHistoryOptionsInterface } from "..";
interface Props {
value: DataItemDimensionHistoryOptionsInterface;
onChange: (nextValue: DataItemDimensionHistoryOptionsInterface) => void;
options?: DataItemHistorySelectionInterface;
style?: React.CSSProperties;
}
export declare function DataItemHistoryOptionsPicker({ style, options, value, onChange, }: Props): JSX.Element;
export {};