@netgrif/components-core
Version:
Netgrif Application engine frontend core Angular library
17 lines (16 loc) • 625 B
TypeScript
import { Operator } from './operator';
import { Moment } from 'moment';
import { OperatorService } from '../../operator-service/operator.service';
import { Query } from '../query/query';
import { LessThan } from './less-than';
import { Operators } from './operators';
/**
* A strict less than operator for Date fields
*/
export declare class LessThanDate extends Operator<Moment> {
protected lessThan: LessThan;
constructor(operators: OperatorService);
createQuery(elasticKeywords: Array<string>, args: Array<Moment>): Query;
getOperatorNameTemplate(): Array<string>;
serialize(): Operators | string;
}