UNPKG
ybg-screen-shot
Version:
latest (1.0.0)
1.0.0
web端自定义截屏插件(原生JS版)
github.com/likaia/js-screen-shot
likaia/js-screen-shot
ybg-screen-shot
/
dist
/
type
/
lib
/
split-methods
/
CalculateToolLocation.d.ts
11 lines
(10 loc)
•
332 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ positionInfoType }
from
"@/lib/type/ComponentType"
;
/** * 计算截图工具栏位置 *
@param
position 裁剪框位置信息 *
@param
toolWidth 截图工具栏宽度 */
export
declare
function
calculateToolLocation
(
position
: positionInfoType,
toolWidth
:
number
): {
mouseX
:
number
;
mouseY
:
number
; };