UNPKG

@bokeh/bokehjs

Version:

Interactive, novel data visualization

26 lines 863 B
import { Tool, ToolView } from "../tool"; import { OnOffButton } from "../on_off_button"; import type { PlotView } from "../../plots/plot"; import * as p from "../../../core/properties"; export declare abstract class InspectToolView extends ToolView { model: InspectTool; readonly parent: PlotView; get plot_view(): PlotView; } export declare namespace InspectTool { type Attrs = p.AttrsOf<Props>; type Props = Tool.Props & { /** @deprecated */ toggleable: p.Property<boolean>; }; } export interface InspectTool extends InspectTool.Attrs { } export declare abstract class InspectTool extends Tool { properties: InspectTool.Props; __view_type__: InspectToolView; constructor(attrs?: Partial<InspectTool.Attrs>); event_type: "move"; tool_button(): OnOffButton; } //# sourceMappingURL=inspect_tool.d.ts.map