UNPKG
@dichioniccolo/odata-filter-parser
Version:
latest (0.0.10)
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
OData filter parser
github.com/dichioniccolo/odata-filter-parser
dichioniccolo/odata-filter-parser
@dichioniccolo/odata-filter-parser
/
dist
/
parsers
/
LessThan.d.ts
9 lines
(8 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Parser
}
from
"./Parser"
;
export
declare
class
LessThanParser
extends
Parser
{
protected
value
:
string
;
static
REGEX
:
RegExp
;
constructor
(
value
:
string
);
static
isOfType
(
value
:
string
):
boolean
;
parse
(
previous
:
unknown
):
any
; }