plywood
Version:
A query planner and executor
12 lines • 637 B
TypeScript
import { PlywoodValue } from '../datatypes';
import { SQLDialect } from '../dialect/baseDialect';
import { ChainableExpression, Expression, ExpressionJS, ExpressionValue } from './baseExpression';
export declare class NotExpression extends ChainableExpression {
static op: string;
static fromJS(parameters: ExpressionJS): NotExpression;
constructor(parameters: ExpressionValue);
protected _calcChainableHelper(operandValue: any): PlywoodValue;
protected _getSQLChainableHelper(dialect: SQLDialect, operandSQL: string): string;
protected specialSimplify(): Expression;
}
//# sourceMappingURL=notExpression.d.ts.map