Skip to content

Instantly share code, notes, and snippets.

@sanjeevsubedi
Created March 7, 2023 15:10
Show Gist options
  • Save sanjeevsubedi/b9556dacb505e69beb1069e4efb161a8 to your computer and use it in GitHub Desktop.
Save sanjeevsubedi/b9556dacb505e69beb1069e4efb161a8 to your computer and use it in GitHub Desktop.
/**
* Angular read only property decorator
*
*/
export function readOnly(prototype: any, name: string) {
Object.defineProperty(prototype, name, {
writable: false,
});
}
/**
* How to use it?
*
* export class AppComponent implements OnInit {
* @readOnly
* tax = 50;
* ............
* }
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment