UNPKG

media-stream-player

Version:

Player built on top of media-stream-library

13 lines (12 loc) 456 B
import React from 'react'; import { VapixParameters, Format } from './PlaybackArea'; interface SettingsProps { readonly parameters: VapixParameters; readonly format: Format; readonly onFormat: (format: Format) => void; readonly onVapix: (key: string, value: string) => void; readonly showStatsOverlay: boolean; readonly toggleStats: (newValue?: boolean) => void; } export declare const Settings: React.FC<SettingsProps>; export {};