AccessorPropertyDescriptor<T> Interface
Package: @esfx/type-model
A PropertyDescriptor constrained to the valid attributes for an accessor.
Declaration
export interface AccessorPropertyDescriptor<T = any>
Properties
configurable
Declaration
configurable?: boolean;
Property Value
enumerable
Declaration
enumerable?: boolean;
Property Value
Methods
get()
Declaration
get?(): T;
Returns
T
set(v)
Declaration
set?(v: T): void;
Parameters
- v
- T
Returns
void