Skip to content

Type Alias: ResourcefulIndexActionCallback()

ts
type ResourcefulIndexActionCallback = (
  record: ActionableRecord,
) =>
  | ResourcefulIndexTernaryOperator
  | Promise<ResourcefulIndexTernaryOperator>
  | PromiseLike<ResourcefulIndexTernaryOperator>;

Parameters

ParameterType
recordActionableRecord

Returns

| ResourcefulIndexTernaryOperator | Promise<ResourcefulIndexTernaryOperator> | PromiseLike<ResourcefulIndexTernaryOperator>