Stone.js API
    Preparing search index...

    Interface IAdapterErrorPage<RawEventType, RawResponseType, ExecutionContextType>

    Represents an Adapter component error handler.

    interface IAdapterErrorPage<RawEventType, RawResponseType, ExecutionContextType> {
        handle?: FunctionalAdapterErrorHandler<
            RawEventType,
            RawResponseType,
            ExecutionContextType,
        >;
        render: (context: AdapterErrorPageRenderContext<any>) => ReactNode;
    }

    Type Parameters

    • RawEventType
    • RawResponseType
    • ExecutionContextType
    Index
    handle?: FunctionalAdapterErrorHandler<
        RawEventType,
        RawResponseType,
        ExecutionContextType,
    >
    render: (context: AdapterErrorPageRenderContext<any>) => ReactNode