UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

11 lines (10 loc) 304 B
import { Operator } from './operator'; import { Operators } from './operators'; /** * Less or equal than operator for numeric fields */ export declare class LessThanEqual extends Operator<number> { constructor(); getOperatorNameTemplate(): Array<string>; serialize(): Operators | string; }