Interface TypedPropertyDescriptor<T>

    interface TypedPropertyDescriptor<T> {
        configurable?: boolean;
        enumerable?: boolean;
        get?: (() => T);
        set?: ((value: T) => void);
        value?: T;
        writable?: boolean;
    }

    Type Parameters

    • T

    Properties

    configurable?: boolean
    enumerable?: boolean
    get?: (() => T)
    set?: ((value: T) => void)
    value?: T
    writable?: boolean