UNPKG
@qualifyze/airtable-formulator
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.0
1.1.0
1.0.2
1.0.1
1.0.0
Airtable Formula Manipulator
github.com/Qualifyze/airtable-formulator
Qualifyze/airtable-formulator
@qualifyze/airtable-formulator
/
lib
/
ast
/
nodes
/
primitives
/
operator.d.ts
7 lines
(6 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Node
,
TokenNode
}
from
"./node"
;
import
{
OperatorSymbol
}
from
"../../../schema"
;
export
interface
Operator
extends
TokenNode
<"operator"> {
readonly
value
:
OperatorSymbol
; }
export
declare
function
isOperator
(
node
:
Node
): node is
Operator
;