Stone.js API
    Preparing search index...

    AdapterEventBuilderOptions.

    This interface defines the options used to create an AdapterEventBuilder instance. It includes an optional initial options object of type V and a resolver function.

    interface AdapterEventBuilderOptions<V, R> {
        options?: V;
        resolver: (options: V) => R;
    }

    Type Parameters

    • V

      The type of the options used to build the final object.

    • R

      The type of the final object that will be built.

    Index
    options?: V

    The initial options used for building the object. This is optional.

    resolver: (options: V) => R

    The resolver function that takes the options and returns the final object of type R.