UNPKG

abhay-charts

Version:
24 lines (23 loc) 515 B
"use strict"; 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;