/** * Custom RTMP streaming destination plugin. * * The simplest streaming destination — reads RTMP URL and key directly * from config. No platform API calls, no chat bridging. */ import type { StreamingDestination } from "../../api/stream-routes"; export declare function createCustomRtmpDestination(config?: { rtmpUrl?: string; rtmpKey?: string; }): StreamingDestination; //# sourceMappingURL=index.d.ts.map