UNPKG

seyfert

Version:

The most advanced framework for discord bots

12 lines (11 loc) 859 B
export declare const DefaultUserAgent: "DiscordBot (https://seyfert.dev, v4.0.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 declare const ALLOWED_TAG_BADGE_EXTENSIONS: readonly ["png", "jpeg", "webp"]; 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]; export type TagBadgeExtension = (typeof ALLOWED_TAG_BADGE_EXTENSIONS)[number];