UNPKG

erium

Version:

Erium is Discord Bot Library made in typescript

8 lines (7 loc) 252 B
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; }