Type Alias IndexingDivinerConfig<TConfig, TSchema>

IndexingDivinerConfig: DivinerConfig<
    WithAdditional<
        {
            indexingDivinerStages?: IndexingDivinerStageConfig;
            indexStore?: SearchableStorage;
            payloadDivinerLimit?: number;
            pollFrequency?: number;
            schema: IndexingDivinerConfigSchema;
            stateStore?: SearchableStorage;
        },
        TConfig,
    >,
    TSchema,
>

Type Parameters