Documents / @faasjs/ant-design / TableFaasDataParams
Type Alias: TableFaasDataParams
TableFaasDataParams =
object
Query params shape expected by table-backed FaasJS list endpoints.
The table sends these fields when remote pagination, filters, or sorters
change. Endpoint-specific params may be included alongside this shape by
setting faasData.params.
Properties
filters?
optionalfilters?:Record<string,any[]>
Active filter values keyed by column field.
pagination?
optionalpagination?:object
Pagination state sent to the endpoint.
current?
optionalcurrent?:number
Current page number.
pageSize?
optionalpageSize?:number
Requested page size.
sorter?
optionalsorter?: {field:string;order:"ascend"|"descend"; } |object[]
Sorter state sent to the endpoint.
Union Members
Type Literal
{ field: string; order: "ascend" | "descend"; }
field
field:
string
Column field being sorted.
order
order:
"ascend"|"descend"
Sort direction.
object[]