export interface NPC { id: string; name: string; type: string; history?: RelationshipEntry[]; relationships?: Map; createdAt?: Date; } export interface RelationshipEntry { change: number; reason: string; timestamp?: Date; } export interface Relationship { strength: number; type: string; history: RelationshipEntry[]; trust?: number; respect?: number; } //# sourceMappingURL=npcs.d.ts.map