init commit
This commit is contained in:
17
remotion/node_modules/@remotion/media-parser/dist/writers/writer.d.ts
generated
vendored
Normal file
17
remotion/node_modules/@remotion/media-parser/dist/writers/writer.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { MediaParserLogLevel } from '../log';
|
||||
export type Writer = {
|
||||
write: (arr: Uint8Array) => Promise<void>;
|
||||
finish: () => Promise<void>;
|
||||
getWrittenByteCount: () => number;
|
||||
updateDataAt: (position: number, data: Uint8Array) => Promise<void>;
|
||||
remove: () => Promise<void>;
|
||||
getBlob: () => Promise<Blob>;
|
||||
};
|
||||
export type CreateContent = (options: {
|
||||
filename: string;
|
||||
mimeType: string;
|
||||
logLevel: MediaParserLogLevel;
|
||||
}) => Promise<Writer>;
|
||||
export type WriterInterface = {
|
||||
createContent: CreateContent;
|
||||
};
|
||||
Reference in New Issue
Block a user