UNPKG

media-stream-player

Version:

Player built on top of media-stream-library

8 lines (7 loc) 256 B
import React, { ChangeEventHandler } from 'react'; export interface SwitchProps { readonly name?: string; readonly checked: boolean; readonly onChange: ChangeEventHandler<HTMLInputElement>; } export declare const Switch: React.FC<SwitchProps>;