eventstorming
Version:
A Graphics Library for Event Storming
14 lines (13 loc) • 573 B
TypeScript
import { Entity } from "./Entity";
import { eventModeInterface, modelInterface } from "../model/IModel";
import { StringIdentity } from "./Identity";
export declare class EventEntity extends Entity<StringIdentity> implements eventModeInterface {
name: string;
relatedNodes: eventModeInterface[];
nearNode: eventModeInterface[];
constructor(name: any);
hasRelatedChild(): boolean;
addRelatedChild(model: eventModeInterface): void;
removeRelatedChild(relatedChild: eventModeInterface): void;
updateRelatedChild(model: modelInterface): void;
}