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