UNPKG

react-native-media-controls

Version:

A sweet UI component to manipulate your media. Strongly typed using Typescript.

8 lines (7 loc) 293 B
/// <reference types="react" /> import { Props } from "./MediaControls"; declare type ControlsProps = Pick<Props, "isLoading" | "mainColor" | "playerState" | "onReplay"> & { onPause: () => void; }; declare const Controls: (props: ControlsProps) => JSX.Element; export { Controls };