UNPKG
crush-feelings
Version:
latest (1.2.3)
1.2.3
1.1.2
1.0.2
1.0.1
Simulate crush interactions in code!
crush-feelings
/
dist
/
person.d.ts
10 lines
(9 loc)
•
222 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Mood
}
from
'./types'
;
export
declare
class
Person
{
private
name;
private
currentMood;
constructor
(
name
:
string
);
getName
():
string
;
setMood
(
mood
:
Mood
):
void
;
getMood
():
Mood
; }