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

    Type Alias IndexTokensOf<CF>

    IndexTokensOf: CF extends { indexes?: infer I }
        ? I extends Record<string, unknown> ? keyof I & string : string
        : string

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

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

    Type Parameters

    • CF