Files
story-studio/remotion/node_modules/@remotion/renderer/dist/serialize-artifact.d.ts
2026-02-21 10:33:18 +01:00

8 lines
207 B
TypeScript

import type { DownloadBehavior } from 'remotion';
export type EmittedArtifact = {
filename: string;
content: string | Uint8Array;
frame: number;
downloadBehavior: DownloadBehavior | null;
};