UNPKG

@gpa-gemstone/common-pages

Version:
14 lines (13 loc) 414 B
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;