json-api-store icon indicating copy to clipboard operation
json-api-store copied to clipboard

ES6 classes for type definitions

Open haydn opened this issue 9 years ago • 0 comments

import Store from "json-api-store";

class Product extends Store.Model {
  title = Store.attr();
}

var store = new Store();

store.define([ "products", "product" ], Product);

haydn avatar Aug 21 '15 06:08 haydn