UNPKG

js-web-screen-shot

Version:

web端自定义截屏插件(原生JS版)

16 lines (15 loc) 545 B
import { BRUSH_SIZE_PRESETS, MOSAIC_BRUSH_SIZE_PRESETS } from "../../../lib/constants/brush"; /** * 设置画笔大小 * @param size * @param index * @param mouseEvent */ export declare function setBrushSize(size: keyof typeof BRUSH_SIZE_PRESETS, index: number, mouseEvent: MouseEvent): 2 | 5 | 10; /** * 设置马赛克工具的笔触大小 * @param size * @param index * @param mouseEvent */ export declare function setMosaicPenSize(size: keyof typeof MOSAIC_BRUSH_SIZE_PRESETS, index: number, mouseEvent: MouseEvent): 10 | 20 | 40;