@script-bridge/server
Version:
two-way communication system between ScriptAPI and backend server using http request
16 lines (15 loc) • 379 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClientAction = void 0;
/** Represents action from client */
class ClientAction {
data;
respond;
session;
constructor(data, respond, session) {
this.data = data;
this.respond = respond;
this.session = session;
}
}
exports.ClientAction = ClientAction;
;