Skip to content

Instantly share code, notes, and snippets.

@darlanalves
Last active January 19, 2016 06:40
Show Gist options
  • Save darlanalves/168cdba3062a1d523c04 to your computer and use it in GitHub Desktop.
Save darlanalves/168cdba3062a1d523c04 to your computer and use it in GitHub Desktop.
New syntax for Gisele models + ES6
import { Model } from Gisele;
const fields = {
name: String
};
export class User extends Model.new(fields) {
modelMethod() {
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment