@bokeh/bokehjs
Version:
Interactive, novel data visualization
17 lines • 489 B
JavaScript
import { Placeholder, PlaceholderView } from "./placeholder";
export class IndexView extends PlaceholderView {
static __name__ = "IndexView";
update(_source, i, _vars, _formatters) {
this.el.textContent = i == null ? "(null)" : `${i}`;
}
}
export class Index extends Placeholder {
static __name__ = "Index";
constructor(attrs) {
super(attrs);
}
static {
this.prototype.default_view = IndexView;
}
}
//# sourceMappingURL=index_.js.map