Stone.js API
    Preparing search index...

    Adapter Interface.

    Represents an adapter with a run method that returns a promise of type ExecutionResultType.

    interface IAdapter {
        run: <ExecutionResultType = unknown>() => Promise<ExecutionResultType>;
    }

    Implemented by

    Index
    run: <ExecutionResultType = unknown>() => Promise<ExecutionResultType>