crush-feelings
Version:
Simulate crush interactions in code!
17 lines (16 loc) • 504 B
TypeScript
import { Person } from './person';
export declare class Relationship {
private person1;
private person2;
private interactionCount;
private readonly MAX_INTERACTIONS;
private readonly interactions;
constructor(person1: Person, person2: Person);
private getRandomInteraction;
private getRandomMood;
simulateInteraction(): string;
tryToDevelopFeelings(): never;
getInteractionCount(): number;
reset(): void;
getCrushIntensity(): string;
}