UNPKG

blow-data

Version:
23 lines (17 loc) 382 B
'use strict'; import {PersistedModel} from '../../src/PersistedModel'; import * as decorators from '../../src/decorators'; @decorators.model({ name: 'Phone', connection: 'mongo' }) export class Phone extends PersistedModel { @decorators.property({ type: 'String' }) manufacturer: string; @decorators.property({ type: 'String' }) model: string; }