@coko/server
Version:
Reusable server for use by Coko's projects
14 lines • 912 B
TypeScript
import { JSONSchema, Pojo, RelationMappings, Transaction } from 'objection';
import BaseModel, { QueryResult } from './base.model';
import ChatChannel from './chatChannel/chatChannel.model';
import ChatMessage from './chatMessage/chatMessage.model';
import Team from './team/team.model';
import TeamMember from './teamMember/teamMember.model';
import User from './user/user.model';
import Identity from './identity/identity.model';
import File from './file/file.model';
import ActivityLog from './activityLog/activityLog.model';
import useTransaction from './useTransaction';
import ServiceCredential from './serviceCredential/serviceCredential.model';
export { BaseModel, ChatChannel, ChatMessage, Team, TeamMember, User, Identity, File, ActivityLog, ServiceCredential, useTransaction, type JSONSchema, type QueryResult, type Pojo, type RelationMappings, type Transaction, };
//# sourceMappingURL=index.d.ts.map