UNPKG

sarala

Version:

Javascript library to communicate with RESTful API built following JSON API specification. inspired by Laravel’s Eloquent.

12 lines (9 loc) 173 B
import Model from './BaseModel' export default class Tag extends Model { resourceName () { return 'tags' } fields () { return ['name'] } }