plywood
Version:
A query planner and executor
15 lines • 667 B
TypeScript
import { Ip } from '../datatypes/ip';
import { SQLDialect } from '../dialect';
import { ChainableExpression, ExpressionJS, ExpressionValue } from './baseExpression';
export declare class IpMatchExpression extends ChainableExpression {
static op: string;
static fromJS(parameters: ExpressionJS): IpMatchExpression;
constructor(parameters: ExpressionValue);
ipToSearch: Ip;
ipSearchType: string;
valueOf(): ExpressionValue;
equals(other: IpMatchExpression | undefined): boolean;
toJS(): ExpressionJS;
protected _getSQLChainableHelper(dialect: SQLDialect, operandSQL: string): string;
}
//# sourceMappingURL=ipMatchExpression.d.ts.map