Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
import type { InputAudioTrack } from 'mediabunny';
|
||||
export type GetPartialAudioDataProps = {
|
||||
track: InputAudioTrack;
|
||||
fromSeconds: number;
|
||||
toSeconds: number;
|
||||
channelIndex: number;
|
||||
signal: AbortSignal;
|
||||
isMatroska: boolean;
|
||||
};
|
||||
export declare const getPartialAudioData: ({ track, fromSeconds, toSeconds, channelIndex, signal, isMatroska, }: GetPartialAudioDataProps) => Promise<Float32Array>;
|
||||
Reference in New Issue
Block a user