14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
declare enum ImageGravity {
|
|
Center = "center",
|
|
Topleft = "top-left",
|
|
Top = "top",
|
|
Topright = "top-right",
|
|
Left = "left",
|
|
Right = "right",
|
|
Bottomleft = "bottom-left",
|
|
Bottom = "bottom",
|
|
Bottomright = "bottom-right"
|
|
}
|
|
|
|
export { ImageGravity };
|