mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 20:46:08 +00:00
10 lines
314 B
TypeScript
10 lines
314 B
TypeScript
/**
|
|
* @link https://discord.com/developers/docs/reference#image-formatting
|
|
*/
|
|
export type ImageFormat = "jpg" | "jpeg" | "png" | "webp" | "gif" | "json";
|
|
|
|
/**
|
|
* @link https://discord.com/developers/docs/reference#image-formatting
|
|
*/
|
|
export type ImageSize = 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096;
|