hk-core-antdv
Version:
Based on Antd Vue3 custom components
25 lines (24 loc) • 445 B
TypeScript
import { default as DateRange } from './DateRange';
/**
* 日期范围查询
*/
declare class DateRangeCondition {
/**
* range
*/
range: DateRange;
/**
* field
*/
field: string;
/**
* 开始值
*/
start: string | null;
/**
* 结束值
*/
end: string | null;
constructor(range: DateRange, field: string, start?: null, end?: null);
}
export default DateRangeCondition;