Skip to content

Instantly share code, notes, and snippets.

View gevgeny's full-sized avatar
🚀
I may be slow to respond.

Eugene Gluhotorenko gevgeny

🚀
I may be slow to respond.
View GitHub Profile
function observable(target: any, propertyKey: string): PropertyDecorator {
return {
get(): any {
return this._value;
},
set(value: any) {
console.log(`Gotcha! value is ${value}.`);
this._value = value;
},
};