UNPKG

@salesforce/soql-language-server

Version:
15 lines (14 loc) 380 B
export { default as QueryValidationFeature } from './query-validation-feature'; export { SoqlItemContext } from './completion'; export declare const enum RequestTypes { RunQuery = "runQuery" } export interface RunQueryResponse { result?: string; error?: RunQueryError; } export interface RunQueryError { name: string; errorCode: string; message: string; }