@salesforce/soql-model
Version:
10 lines (9 loc) • 447 B
TypeScript
import * as Soql from '../model';
import { UnmodeledSyntaxReason } from '../unmodeled';
import { SoqlModelObjectImpl } from './soqlModelObjectImpl';
export declare class UnmodeledSyntaxImpl extends SoqlModelObjectImpl implements Soql.UnmodeledSyntax {
unmodeledSyntax: string;
reason: UnmodeledSyntaxReason;
constructor(unmodeledSyntax: string, reason: UnmodeledSyntaxReason);
toSoqlSyntax(options?: Soql.SyntaxOptions): string;
}