@bokeh/bokehjs
Version:
Interactive, novel data visualization
23 lines • 798 B
TypeScript
import { ToggleInput, ToggleInputView } from "./toggle_input";
import type { StyleSheetLike } from "../../core/dom";
import type * as p from "../../core/properties";
export declare class CheckboxView extends ToggleInputView {
model: Checkbox;
protected checkbox_el: HTMLInputElement;
stylesheets(): StyleSheetLike[];
render(): void;
protected _update_active(): void;
protected _update_disabled(): void;
}
export declare namespace Checkbox {
type Attrs = p.AttrsOf<Props>;
type Props = ToggleInput.Props;
}
export interface Checkbox extends Checkbox.Attrs {
}
export declare class Checkbox extends ToggleInput {
properties: Checkbox.Props;
__view_type__: CheckboxView;
constructor(attrs?: Partial<Checkbox.Attrs>);
}
//# sourceMappingURL=checkbox.d.ts.map