hk-core-antdv
Version:
Based on Antd Vue3 custom components
21 lines (20 loc) • 361 B
TypeScript
import { default as Operator } from './Operator';
/**
* 通用查询条件
*/
declare class SimpleCondition {
/**
* field
*/
field: string;
/**
* operator
*/
operator: Operator;
/**
* value
*/
value: any;
constructor(field: string, value: any, operator?: Operator);
}
export default SimpleCondition;