UNPKG
@rytass/file-converter-adapter-image-watermark
Version:
latest (0.1.13)
0.1.13
0.1.12
0.1.11
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.2
Rytass Utils Storages Images Watermark
github.com/Rytass/Utils
Rytass/Utils
@rytass/file-converter-adapter-image-watermark
/
typings.d.ts
12 lines
(11 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
type
{
Gravity
}
from
'sharp'
;
type
FilePath
=
string
;
interface
Watermark
{
image
:
FilePath
|
Buffer
;
gravity
?:
Gravity
; }
export
interface
ImageWatermarkOptions
{
watermarks
:
Watermark
[];
concurrency
?:
number
; }
export
{};