UNPKG

@medalsocial/meda

Version:

Shared Meda UI shell and runtime package.

11 lines (10 loc) 417 B
import type { PlatformId } from '../types.js'; export interface PlatformMeta { /** Human-readable name (e.g. "Twitter / X"). */ displayName: string; /** Platform brand color (hex with leading #). */ brandColor: string; /** Soft per-platform character limit (consumers may override per render). */ characterLimit: number; } export declare const PLATFORM_META: Record<PlatformId, PlatformMeta>;