UNPKG

aurelia-orm

Version:

Makes working with entities and calling your Rest API simple.

10 lines (8 loc) 272 B
import {resource} from '../../../src/decorator/resource'; import {idProperty} from '../../../src/decorator/idProperty'; import {Entity} from '../../../src/entity'; @resource('with-resource') @idProperty('idTag') export class WithResource extends Entity { foo = null; }