media-stream-player
Version:
Player built on top of media-stream-library
14 lines (13 loc) • 482 B
TypeScript
import React from 'react';
import { VapixParameters } from './PlaybackArea';
import { Format } from './types';
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 {};