UNPKG
react-agora
Version:
latest (0.7.3)
0.7.3
0.7.2
0.7.0
0.6.1
0.6.0
0.5.0
0.4.0
0.2.0
0.1.0
A React wrapper for AgoraRTC Video.
github.com/dhaiwat10/react-agora
dhaiwat10/react-agora
react-agora
/
dist
/
index.d.ts
10 lines
(9 loc)
•
237 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
FC
}
from
'react'
;
import
'./index.css'
;
export
interface
VideoCallProps
{
appId
:
string
;
appCertificate
:
string
;
userId
:
number
;
channelId
:
string
; }
export
declare
const
VideoCall
:
FC
<
VideoCallProps
>;