Plumile JS API
Preparing search index...
filter-query/src
FieldDescriptorBase
Interface FieldDescriptorBase<TKind, TValue>
Base descriptor shared by number and string fields.
interface
FieldDescriptorBase
<
TKind
extends
PrimitiveKind
,
TValue
>
{
kind
:
TKind
;
operators
:
readonly
(
|
"gt"
|
"gte"
|
"lt"
|
"lte"
|
"eq"
|
"neq"
|
"contains"
|
"sw"
|
"ew"
|
"between"
|
"in"
|
"nin"
)
[]
;
parse
?:
(
raw
:
string
)
=>
TValue
|
undefined
;
serialize
?:
(
value
:
TValue
)
=>
string
;
}
Type Parameters
TKind
extends
PrimitiveKind
TValue
Index
Properties
kind
operators
parse?
serialize?
Properties
Readonly
kind
kind
:
TKind
Readonly
operators
operators
:
readonly
(
|
"gt"
|
"gte"
|
"lt"
|
"lte"
|
"eq"
|
"neq"
|
"contains"
|
"sw"
|
"ew"
|
"between"
|
"in"
|
"nin"
)
[]
Optional
Readonly
parse
parse
?:
(
raw
:
string
)
=>
TValue
|
undefined
Optional
Readonly
serialize
serialize
?:
(
value
:
TValue
)
=>
string
Settings
Member Visibility
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
kind
operators
parse
serialize
Plumile JS API
Loading...
Base descriptor shared by number and string fields.