UNPKG

lilybird

Version:
8 lines 316 B
import type { ImageDataType, ImageFormat } from "#enums"; export type ImageData = `data:${ImageDataType};base64,${string}`; export type ImageSize = 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096; export interface CDNOptions { size?: ImageSize; format?: ImageFormat; } //# sourceMappingURL=image.d.ts.map