UNPKG

js-draw

Version:

Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.

9 lines (8 loc) 353 B
import { ToolbarContext } from '../../types'; declare const makeThicknessSlider: (context: ToolbarContext, onChange: (value: number) => void) => { container: HTMLDivElement; addTo: (parent: HTMLElement) => void; setBounds: (min: number, max: number) => void; setValue: (thickness: number) => void; }; export default makeThicknessSlider;