import {Model} from "../../Database/Models/Model"; import {EventType, NormalEvent} from "../EventHandler.types"; export class ElementCreatedEvent implements NormalEvent { constructor( public readonly tableName: string, public readonly instanceValues: Partial, public readonly instanceId: number | bigint ) { } type: EventType.Normal = EventType.Normal; }