UNPKG
iking-utils-test
Version:
latest (1.2.9)
1.2.9
金合前端工具库(1.2.9版本之后需要注册KEY)
1.85.2.105/iking-web-doc/
iking-utils-test
/
dist
/
src
/
file
/
resize-image.d.ts
10 lines
(9 loc)
•
320 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** *
@description
: *
@param
{
File
}
file
*
@param
{
*
}
width
*
@param
{
*
}
height
*
@param
{
Function
} cb 当图片宽或高小于指定的值时,返回原文件 *
@return
{
*
} */
export
declare
const
resizeImage
:
(
file
:
File
,
width
:
number
|
undefined
,
height
:
number
|
undefined
,
cb
:
Function
) =>
void
;