json-api-store
json-api-store copied to clipboard
ES6 classes for type definitions
import Store from "json-api-store";
class Product extends Store.Model {
title = Store.attr();
}
var store = new Store();
store.define([ "products", "product" ], Product);