UNPKG
react-native-media-controls
Version:
latest (2.3.0)
2.3.0
2.2.0
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.1.1
1.1.0
1.0.0
0.1.1
0.1.0
A sweet UI component to manipulate your media. Strongly typed using Typescript.
react-native-media-controls
/
dist
/
Controls.d.ts
8 lines
(7 loc)
•
293 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/// <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
};