Skip to content

Instantly share code, notes, and snippets.

@srttk
Created May 23, 2017 11:31
Show Gist options
  • Save srttk/5e8eab34abcebbe76d9a2f8881e5a3ae to your computer and use it in GitHub Desktop.
Save srttk/5e8eab34abcebbe76d9a2f8881e5a3ae to your computer and use it in GitHub Desktop.
Type script / ES 2015 class with propery fill method
export class Person {
name : string;
age: number;
fillFromJson(json: any) {
for (var propName in json) {
this[propName] = json[propName]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment