@karmaniverous/entity-manager
    Preparing search index...

    Type Alias IndexTokensFrom<CC>

    IndexTokensFrom: CC extends { indexes?: infer I } ? keyof I & string : string

    Derive the union of index token names from a values-first config input.

    When the provided config literal carries an indexes object with preserved literal keys (prefer as const at call sites), this helper captures the index token union. Falls back to string if absent.

    Type Parameters

    • CC