Type Alias ActionResult<T>

ActionResult<T>:
    | T
    | NotFoundResult
    | null
    | undefined
    | void

A result of a Route.action.

Type Parameters

  • T

    The type of the result.