Error: The domain REST-DATA-VALIDATOR.NETLIFY.APP is not authorized to show the cookie declaration for domain group ID 24a35cd5-88b2-497b-bb37-81610ac07f04. Please add it to the domain group in the Cookiebot Manager to authorize the domain.
Skip to content

Setter Decorator

The Setter decorator allows for the automatic creation of a setter for a specific property, giving you the ability to control the writability of a property dynamically.

Usage

typescript
import { Setter } from "rest-data-validator";

class Example {
    @Setter({ writable: true })
    private _property: string = 'default';
}

Options

  • writable: Make the setter writable (default is true).

These decorators and interfaces form part of the rest-data-validator's effort to streamline the property management within classes, focusing on clean, maintainable, and efficient code.

Setter Decorator has loaded