vani-meeting-client
Version:
Vani Meeting Clinet SDK
18 lines (17 loc) • 737 B
JavaScript
var Base = /** @class */ (function () {
function Base(_meetingStartRequest, _communicationHandler) {
this.meetingStartRequest = _meetingStartRequest;
this.communicationHandler = _communicationHandler;
this.onObjectCreated();
}
Base.prototype.onObjectCreated = function () {
// this.meetingStartRequest && this.meetingStartRequest.logLevel === LogLevel.Debug && log.info("Object created")
};
Base.prototype.cleanup = function () {
this.communicationHandler = undefined;
this.meetingStartRequest = undefined;
// this.meetingStartRequest && this.meetingStartRequest.logLevel === LogLevel.Debug &&log.info("cleanup");
};
return Base;
}());
export { Base };