UNPKG

dataorm

Version:
10 lines (9 loc) 284 B
import { Subject } from '../observer/Subject'; declare class Model extends Subject { static get(): typeof Subject; static find(id: any): any; static create(entity: any): any; hasMany(relation: any): any; belongsTo(relation: any): any; } export { Model };