Stone.js API
    Preparing search index...

    Interface RouterBlueprint<IncomingEventType, OutgoingResponseType>

    Blueprint for defining router-specific behavior and configuration.

    interface RouterBlueprint<
        IncomingEventType extends StoneIncomingEvent = StoneIncomingEvent,
        OutgoingResponseType = unknown,
    > {
        stone: RouterAppConfig<IncomingEventType, OutgoingResponseType>;
        [key: string]: unknown;
    }

    Type Parameters

    Hierarchy

    Indexable

    • [key: string]: unknown

      Allow adding any additional custom properties. The value of the custom properties can be of any type, depending on user requirements.

    Index

    Configuration and behavior definitions for the router application.