goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
20 lines • 530 B
TypeScript
import { default as React } from 'react';
export interface TimeRange {
start: Date | null;
end: Date | null;
}
export interface TimeRangeProps {
onChange?: (timeRange: TimeRange) => void;
value?: TimeRange;
startLabel?: string;
endLabel?: string;
helperText?: string;
styles?: {
disabled?: boolean;
required?: boolean;
theme?: string;
};
}
declare const TimeRangeComponent: React.FC<TimeRangeProps>;
export default TimeRangeComponent;
//# sourceMappingURL=index.d.ts.map