UNPKG
ts-odata-client
Version:
latest (2.0.2)
2.0.2
2.0.1
2.0.0
2.0.0-preview3
2.0.0-preview2.9
2.0.0-preview2
2.0.0-preview
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.1.0
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
OData TypeScript Client
github.com/cbrianball/ts-odata-client
cbrianball/ts-odata-client
ts-odata-client
/
lib
/
ExpressionVisitor.d.ts
8 lines
(7 loc)
•
235 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
Expression
}
from
"./Expression"
;
/** * Interface used by any type that translates an Expression into a Domain Specific Language (DSL). */
export
interface
ExpressionVisitor
{
visit
(
expression
:
Expression
):
void
; }