UNPKG

seyfert

Version:

The most advanced framework for discord bots

10 lines (9 loc) 696 B
export declare const DefaultUserAgent = "DiscordBot (https://seyfert.dev, v2.1.0)"; export declare const ALLOWED_EXTENSIONS: readonly ["webp", "png", "jpg", "jpeg", "gif"]; export declare const ALLOWED_STICKER_EXTENSIONS: readonly ["png", "json", "gif"]; export declare const ALLOWED_SIZES: readonly [16, 32, 64, 100, 128, 256, 512, 1024, 2048, 4096]; export declare const ALLOWED_SOUNDS_EXTENSIONS: readonly ["mp3", "ogg"]; export type ImageExtension = (typeof ALLOWED_EXTENSIONS)[number]; export type StickerExtension = (typeof ALLOWED_STICKER_EXTENSIONS)[number]; export type ImageSize = (typeof ALLOWED_SIZES)[number]; export type SoundExtension = (typeof ALLOWED_SOUNDS_EXTENSIONS)[number];