Data interface for the type of action.

interface IActionAbstractMediaTypedHandle<HI> {
    context: IActionContext;
    handle: HI;
    handleMediaType?: string;
}

Type Parameters

  • HI

Hierarchy (view full)

  • IAction
    • IActionAbstractMediaTypedHandle

Properties

The input context that is passed through by actors.

handle: HI

The handle action input.

handleMediaType?: string

The handle media type that should be used when 'handle' is truthy.