Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
export type ConvertAudioDataOptions = {
|
||||
audioData: AudioData;
|
||||
newSampleRate?: number;
|
||||
format?: AudioSampleFormat | null;
|
||||
};
|
||||
/**
|
||||
* Converts an `AudioData` object to a new `AudioData` object with a different sample rate or format.
|
||||
* @see [Documentation](https://remotion.dev/docs/webcodecs/convert-audiodata)
|
||||
*/
|
||||
export declare const convertAudioData: ({ audioData, newSampleRate, format, }: ConvertAudioDataOptions) => AudioData;
|
||||
Reference in New Issue
Block a user