UNPKG

@quartic/bokehjs

Version:

Interactive, novel data visualization

17 lines (16 loc) 808 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var extend = function (child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty; var model_1 = require("../../model"); exports.TickFormatter = (function (superClass) { extend(TickFormatter, superClass); function TickFormatter() { return TickFormatter.__super__.constructor.apply(this, arguments); } TickFormatter.prototype.type = 'TickFormatter'; TickFormatter.prototype.doFormat = function (ticks, loc) { }; return TickFormatter; })(model_1.Model);