UNPKG
@jitterbit/soql-parser-js
Version:
latest (6.1.0-3)
6.1.0-3
6.1.0-2
6.1.0-1
6.1.0-0
Salesforce.com SOQL parser and composer
github.com/jitterbit/soql-parser-js
jitterbit/soql-parser-js
@jitterbit/soql-parser-js
/
dist
/
cjs
/
src
/
parser
/
visitor.d.ts
5 lines
(4 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
import
{
Query
}
from
'../api/api-models'
;
import
{
ParseQueryConfig
}
from
'./parser'
;
export
declare
function
parseQuery
(
soql
:
string
,
options
?:
ParseQueryConfig
):
Query
;
export
declare
function
isQueryValid
(
soql
:
string
,
options
?:
ParseQueryConfig
):
boolean
;