Library API
    Preparing search index...

    Type Alias Property<T>

    Property: Record<PropertyKey, T>
    🔍 Expanded Type Evaluation (Compiler API)
    type Property<T> = { [x: string]: T; [x: number]: T; [x: symbol]: T; }

    Generic Record

    Type Parameters

    • T