Library API
    Preparing search index...

    Type Alias OwnOf<T>

    OwnOf: T extends any[] ? { [K in number]: T[number] } : Omit<T, IgnoreOf>
    🔍 Expanded Type Evaluation (Compiler API)
    type OwnOf<T> = T extends any[] ? { [x: number]: T[number]; } : Omit<T, IgnoreOf>

    Extracts own properties of an object, excluding well-known symbols and ignored keys

    Type Parameters