@coko/server
Version:
Reusable server for use by Coko's projects
20 lines • 570 B
TypeScript
import { RelationMappings } from 'objection';
import BaseModel from '../base.model';
declare class ActivityLog extends BaseModel {
actorId: string;
actionType: string;
message: string;
valueBefore: object;
valueAfter: object;
affectedObjects: {
id: string;
objectType: string;
};
additionalData: object;
constructor();
static get tableName(): string;
static get schema(): object;
static get relationMappings(): RelationMappings;
}
export default ActivityLog;
//# sourceMappingURL=activityLog.model.d.ts.map