@waveform-playlist/browser 9.5.1 → 9.5.2
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/dist/index.d.ts +6 -9
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +430 -428
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -1908,21 +1908,18 @@ export declare interface UseExportWavReturn {
|
|
|
1908
1908
|
*
|
|
1909
1909
|
* @example
|
|
1910
1910
|
* ```tsx
|
|
1911
|
-
* const { splitClipAtPlayhead } = useClipSplitting({ ... });
|
|
1912
|
-
*
|
|
1913
1911
|
* useKeyboardShortcuts({
|
|
1914
1912
|
* shortcuts: [
|
|
1915
1913
|
* {
|
|
1916
|
-
* key: '
|
|
1917
|
-
* action:
|
|
1918
|
-
* description: '
|
|
1914
|
+
* key: ' ',
|
|
1915
|
+
* action: togglePlayPause,
|
|
1916
|
+
* description: 'Play/Pause',
|
|
1919
1917
|
* preventDefault: true,
|
|
1920
1918
|
* },
|
|
1921
1919
|
* {
|
|
1922
|
-
* key: '
|
|
1923
|
-
*
|
|
1924
|
-
*
|
|
1925
|
-
* description: 'Split at selection boundaries',
|
|
1920
|
+
* key: 's',
|
|
1921
|
+
* action: splitClipAtPlayhead,
|
|
1922
|
+
* description: 'Split clip at playhead',
|
|
1926
1923
|
* preventDefault: true,
|
|
1927
1924
|
* },
|
|
1928
1925
|
* ],
|