34 lines
798 B
JavaScript
34 lines
798 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Socket = void 0;
|
|
const Feature_1 = require("../../types/Feature");
|
|
class Socket extends Feature_1.Feature {
|
|
socketPoint;
|
|
url;
|
|
path;
|
|
io;
|
|
message;
|
|
constructor(message, socketPoint) {
|
|
super();
|
|
this.message = message;
|
|
this.socketPoint = socketPoint;
|
|
}
|
|
async connect() {
|
|
throw new Error('not implemented');
|
|
}
|
|
async emit(event, data, callback) {
|
|
throw new Error('not implemented');
|
|
}
|
|
disconnect() {
|
|
throw new Error('not implemented');
|
|
}
|
|
on(event, callback) {
|
|
throw new Error('not implemented');
|
|
}
|
|
off(event, callback) {
|
|
throw new Error('not implemented');
|
|
}
|
|
}
|
|
exports.Socket = Socket;
|
|
;
|