UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

11 lines (10 loc) 303 B
import { Operator } from './operator'; import { Operators } from './operators'; /** * A strict greater than operator for numeric fields. */ export declare class MoreThan extends Operator<number> { constructor(); getOperatorNameTemplate(): Array<string>; serialize(): Operators | string; }