UNPKG

crush-feelings

Version:

Simulate crush interactions in code!

10 lines (9 loc) 222 B
import { Mood } from './types'; export declare class Person { private name; private currentMood; constructor(name: string); getName(): string; setMood(mood: Mood): void; getMood(): Mood; }