8 lines
120 B
JavaScript
8 lines
120 B
JavaScript
class Popup {
|
|
constructor(start, end, text) {
|
|
this.start = start;
|
|
this.end = end;
|
|
this.text = text;
|
|
}
|
|
}
|