Stone.js API
    Preparing search index...

    Interface AdapterMiddlewareOptions

    AdapterMiddleware options.

    This interface defines the configuration options for marking a class as middleware.

    interface AdapterMiddlewareOptions {
        adapterAlias?: string;
        params?: unknown[];
        platform?: string;
        priority?: number;
    }
    Index
    adapterAlias?: string

    The alias name for which the middleware is used.

    params?: unknown[]

    The params to pass to the middleware.

    platform?: string

    The platform name for which the middleware is used.

    priority?: number

    The execution priority of the middleware.