abhay-charts
Version:
A library to calculate chart
24 lines (23 loc) • 515 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Charts = void 0;
/**
* Chart is the container of utilities of methods
*
* @class Charts
*/
var Charts = /** @class */ (function () {
function Charts() {
}
/**
* scales the chart
*
* @returns {number} returns the aspect ratio
* @memberof Charts
*/
Charts.prototype.scale = function () {
return 56;
};
return Charts;
}());
exports.Charts = Charts;