@gpa-gemstone/common-pages
Version:
Common UI pages for GPA products
13 lines (12 loc) • 376 B
TypeScript
import { ITimeWindow } from '../TimeFilter';
export type Window = "start" | "end";
export interface IProps {
Filter: ITimeWindow;
SetFilter: (filter: ITimeWindow) => void;
SetActiveQP: (qp: number) => void;
Format: string;
ShowQuickSelect: boolean;
Window: Window;
}
declare const WindowForm: (props: IProps) => JSX.Element;
export default WindowForm;