@resistdesign/voltra
    Preparing search index...

    Type Alias TypeInfoORMIndexingConfigSeed

    TypeInfoORMIndexingConfigSeed: Omit<
        TypeInfoORMIndexingConfig,
        "fullText"
        | "structured",
    > & {
        fullText?: TypeInfoORMIndexingConfig["fullText"];
        structured?: TypeInfoORMIndexingConfig["structured"];
    }

    Base indexing config accepted by getTypeInfoORMIndexingConfigFromTypeInfoMap.

    The utility derives only field lists from TypeInfo tags. Concrete backends, readers, writers, and other runtime dependencies must be supplied here when a tagged field requires that indexing mode.

    Type Declaration