Files
story-studio/remotion/node_modules/@remotion/streaming/dist/make-stream-payload-message.d.ts
2026-02-21 10:33:18 +01:00

7 lines
210 B
TypeScript

export declare const magicWordStr = "remotion_buffer:";
export declare const makeStreamPayloadMessage: ({ status, body, nonce, }: {
nonce: string;
status: 0 | 1;
body: Uint8Array;
}) => Uint8Array;