Type Alias: FunctionalRouteGroupDefinition<IncomingEventType, OutgoingResponseType>
Type Alias: FunctionalRouteGroupDefinition<IncomingEventType, OutgoingResponseType>
type FunctionalRouteGroupDefinition<IncomingEventType, OutgoingResponseType> = Omit<FunctionalRouteDefinition<IncomingEventType, OutgoingResponseType>, "handler" | "fallback" | "alias"> & object;
Defines a functional route group with a required path.
Type declaration
path
path: string;
Type Parameters
IncomingEventType
IncomingEventType
extends IIncomingEvent
= IIncomingEvent
OutgoingResponseType
OutgoingResponseType
= unknown