mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-06 22:20:55 +03:00
10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
function ProgressEmitter(name, uuid, type) {
|
|
this.name = name;
|
|
this.uuid = uuid;
|
|
this.type = type;
|
|
this.link = null;
|
|
|
|
this.emit = () => {
|
|
|
|
};
|
|
} |