firebolt-api
Version:
30 lines (29 loc) • 572 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Server class
*
* @class Server
*/
var Server = /** @class */ (function () {
/**
* Creates an instance of Server.
*
* @param {Object} options
*
* @memberof Server
*/
function Server(options) {
console.log('Create a new Server instance');
}
/**
* Start Server.
*
* @memberof Server
*/
Server.prototype.start = function () {
return 'Starting';
};
return Server;
}());
exports.default = Server;