UNPKG
erium
Version:
latest (1.0.4-bugfixes)
1.0.4
1.0.4-bugfixes
1.0.3
1.0.3-fix2
1.0.3-fix
1.0.2
1.0.2-fix
0.0.1
Erium is Discord Bot Library made in typescript
github.com/NotSkieslol/Erium
NotSkieslol/Erium
erium
/
src
/
types
/
Image.ts
8 lines
(7 loc)
•
252 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
type
ImageFormat
=
"jpg"
|
"jpeg"
|
"webp"
|
"gif"
|
"png"
;
export
type
ImageSize
=
16
|
32
|
64
|
128
|
256
|
512
|
1024
|
2048
|
4096
;
export
interface
ImageUrlOptions
{
format
?:
ImageFormat
;
size
?:
ImageSize
;
dynamic
?:
boolean
; }