@gpa-gemstone/common-pages
Version:
Common UI pages for GPA products
14 lines (13 loc) • 414 B
TypeScript
import * as React from 'react';
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) => React.JSX.Element;
export default WindowForm;