UNPKG

type-arango

Version:

ArangoDB Foxx decorators and utilities for TypeScript

12 lines (10 loc) 269 B
import {Attribute, Document, Entity, OneToMany, Related} from '../../../src' // type-arango import {Book} from '.' // describe the user @Document() export class Author extends Entity { @Attribute() name: string @OneToMany() books: Related<Book[]> }