@capgo/native-audio 5.0.4 → 5.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/docs.json +2 -2
- package/dist/esm/definitions.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -236,12 +236,12 @@ preload(options: PreloadOptions) => Promise<void>
|
|
236
236
|
### play(...)
|
237
237
|
|
238
238
|
```typescript
|
239
|
-
play(options: { assetId: string; time
|
239
|
+
play(options: { assetId: string; time?: number; }) => Promise<void>
|
240
240
|
```
|
241
241
|
|
242
|
-
| Param | Type
|
243
|
-
| ------------- |
|
244
|
-
| **`options`** | <code>{ assetId: string; time
|
242
|
+
| Param | Type |
|
243
|
+
| ------------- | ------------------------------------------------ |
|
244
|
+
| **`options`** | <code>{ assetId: string; time?: number; }</code> |
|
245
245
|
|
246
246
|
--------------------
|
247
247
|
|
package/dist/docs.json
CHANGED
@@ -43,12 +43,12 @@
|
|
43
43
|
},
|
44
44
|
{
|
45
45
|
"name": "play",
|
46
|
-
"signature": "(options: { assetId: string; time
|
46
|
+
"signature": "(options: { assetId: string; time?: number; }) => Promise<void>",
|
47
47
|
"parameters": [
|
48
48
|
{
|
49
49
|
"name": "options",
|
50
50
|
"docs": "",
|
51
|
-
"type": "{ assetId: string; time
|
51
|
+
"type": "{ assetId: string; time?: number | undefined; }"
|
52
52
|
}
|
53
53
|
],
|
54
54
|
"returns": "Promise<void>",
|