UNPKG

@gpa-gemstone/common-pages

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