Type Alias: ErrorPageType<IncomingEventType, OutgoingResponseType>
Type Alias: ErrorPageType<IncomingEventType, OutgoingResponseType>
type ErrorPageType<IncomingEventType, OutgoingResponseType> =
| ErrorPageClass<IncomingEventType, OutgoingResponseType>
| FactoryErrorPage<IncomingEventType, OutgoingResponseType>;
Represents an error page type.
Type Parameters
IncomingEventType
IncomingEventType extends ReactIncomingEvent
The type representing the incoming event.
OutgoingResponseType
OutgoingResponseType = unknown
The type representing the outgoing response.
