Stone.js API
    Preparing search index...

    Interface MetaAdapterErrorPage<RawEventType, RawResponseType, ExecutionContextType>

    Represents an Adapter meta component error handler.

    interface MetaAdapterErrorPage<
        RawEventType,
        RawResponseType,
        ExecutionContextType,
    > {
        adapterAlias?: string;
        error?: any;
        isClass?: boolean;
        isFactory?: boolean;
        layout?: unknown;
        lazy?: boolean;
        module:
            | AdapterErrorPageType<
                RawEventType,
                RawResponseType,
                ExecutionContextType,
            >
            | Laziable<
                AdapterErrorPageType<
                    RawEventType,
                    RawResponseType,
                    ExecutionContextType,
                >,
            >;
        platform?: string;
    }

    Type Parameters

    • RawEventType
    • RawResponseType
    • ExecutionContextType
    Index
    adapterAlias?: string
    error?: any
    isClass?: boolean
    isFactory?: boolean
    layout?: unknown
    lazy?: boolean
    module:
        | AdapterErrorPageType<
            RawEventType,
            RawResponseType,
            ExecutionContextType,
        >
        | Laziable<
            AdapterErrorPageType<
                RawEventType,
                RawResponseType,
                ExecutionContextType,
            >,
        >
    platform?: string