init commit
This commit is contained in:
13
remotion/node_modules/@remotion/webcodecs/dist/io-manager/io-synchronizer.d.ts
generated
vendored
Normal file
13
remotion/node_modules/@remotion/webcodecs/dist/io-manager/io-synchronizer.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { LogLevel } from '../log';
|
||||
import type { WebCodecsController } from '../webcodecs-controller';
|
||||
export declare const makeIoSynchronizer: ({ logLevel, label, controller, }: {
|
||||
logLevel: LogLevel;
|
||||
label: string;
|
||||
controller: WebCodecsController | null;
|
||||
}) => {
|
||||
inputItem: (timestamp: number) => void;
|
||||
onOutput: (timestamp: number) => void;
|
||||
waitForQueueSize: (queueSize: number) => Promise<void>;
|
||||
clearQueue: () => void;
|
||||
};
|
||||
export type IoSynchronizer = ReturnType<typeof makeIoSynchronizer>;
|
||||
Reference in New Issue
Block a user