We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c3ae0 commit 9f33b64Copy full SHA for 9f33b64
README.md
@@ -20,7 +20,7 @@ You can then use the library in your script:
20
```javascript
21
var { VideoUploader } = require('@api.video/video-uploader');
22
23
-var uploader = new VideoUploader("#target", {
+var uploader = new VideoUploader({
24
file: files[0],
25
uploadToken: "YOUR_DELEGATED_TOKEN"
26
// ... other optional options
@@ -40,7 +40,7 @@ You can then use the library in your script:
40
```typescript
41
import { VideoUploader } from '@api.video/video-uploader'
42
43
-const uploader = new VideoUploader("#target", {
+const uploader = new VideoUploader({
44
45
46
0 commit comments