Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
import type { MediaParserLogLevel } from '@remotion/media-parser';
|
||||
import type { CreateAudioDecoderInit, WebCodecsAudioDecoder } from './create-audio-decoder';
|
||||
import type { IoSynchronizer } from './io-manager/io-synchronizer';
|
||||
export declare const getWaveAudioDecoder: ({ onFrame, config, sampleFormat, ioSynchronizer, onError, }: Pick<CreateAudioDecoderInit, "onFrame" | "config"> & {
|
||||
sampleFormat: "s16" | "s24";
|
||||
logLevel: MediaParserLogLevel;
|
||||
ioSynchronizer: IoSynchronizer;
|
||||
onError: (error: Error) => void;
|
||||
}) => WebCodecsAudioDecoder;
|
||||
Reference in New Issue
Block a user