Type for property decorator functions. Defines the signature for decorators that modify class properties.
const decorator: PropertyDecoratorType = (target, key) => { // Modify the property}; Copy
const decorator: PropertyDecoratorType = (target, key) => { // Modify the property};
Type for property decorator functions. Defines the signature for decorators that modify class properties.