Type Alias ChainItem<R, C>

ChainItem<R, C>: ChainItem<ActionValue, RouteExtension<R, C>, ContextExtension<R, C>> & Readonly<{
    element?: WebComponentInterface<R, C>;
}>

An item of the resolved route sequence.

Type Parameters

  • R extends object

    The type of the result produced by the route.

  • C extends object

    The type of additional route-specific data. Defaults to an empty object.