send/public/file.js

10 lines
161 B
JavaScript
Raw Normal View History

2017-06-01 20:14:14 +00:00
function ProgressEmitter(name, uuid, type) {
this.name = name;
this.uuid = uuid;
this.type = type;
this.link = null;
this.emit = () => {
};
}