functional-models
    Preparing search index...

    Type Alias PropertyGetters<TData>

    PropertyGetters: {
        readonly [PropertyKey in keyof Required<TData>]: () => TData[PropertyKey]
    }

    Getter functions that provide access to the value of a property of an instance.

    Type Parameters