@salesforce/soql-model
Version:
9 lines (8 loc) • 343 B
TypeScript
import * as Soql from '../model';
import { SoqlModelObjectImpl } from './soqlModelObjectImpl';
export declare class LiteralImpl extends SoqlModelObjectImpl implements Soql.Literal {
type: Soql.LiteralType;
value: string;
constructor(type: Soql.LiteralType, value: string);
toSoqlSyntax(options?: Soql.SyntaxOptions): string;
}