@salesforce/soql-model
Version:
8 lines (7 loc) • 311 B
TypeScript
import * as Soql from '../model';
import { SoqlModelObjectImpl } from './soqlModelObjectImpl';
export declare class WhereImpl extends SoqlModelObjectImpl implements Soql.Where {
condition: Soql.Condition;
constructor(condition: Soql.Condition);
toSoqlSyntax(options?: Soql.SyntaxOptions): string;
}