@coko/server
Version:
Reusable server for use by Coko's projects
14 lines • 489 B
TypeScript
import { RelationMappings } from 'objection';
import BaseModel from '../base.model';
import ChatMessage from '../chatMessage/chatMessage.model';
declare class ChatChannel extends BaseModel {
chatType: string;
relatedObjectId: string;
messages: ChatMessage[];
constructor();
static get tableName(): string;
static get schema(): object;
static get relationMappings(): RelationMappings;
}
export default ChatChannel;
//# sourceMappingURL=chatChannel.model.d.ts.map