Interface FinalizeHandlerArguments<Input>

interface FinalizeHandlerArguments<Input> {
    input: Input;
    request: Request;
}

Type Parameters

  • Input extends object

Hierarchy (view full)

Properties

Properties

input: Input

User input to a command. Reflects the userland representation of the union of data types the command can effectively handle.

request: Request

The user input serialized as a request.