TypeScript Types Reference
warning
Experimental package: We reserve the right to make breaking changes in order to correct bad design decisions until this notice is gone.
The following types are part of the API of @remotion/vercel:
VercelSandbox
import type {VercelSandbox } from '@remotion/vercel';A Sandbox with AsyncDisposable support. Returned by createSandbox().
CreateSandboxOnProgress
import type {CreateSandboxOnProgress } from '@remotion/vercel';progress: A number from0to1indicating overall progressmessage: A human-readable description of the current phase
RenderOnVercelProgress
import type {RenderOnVercelProgress } from '@remotion/vercel';A discriminated union with the following members:
{type: 'opening-browser'}- The browser is being opened.{type: 'selecting-composition'}- The composition is being selected.{type: 'render-progress'}- The render is in progress. The remaining fields are the same asRenderMediaOnProgressfrom@remotion/renderer.
Used as the onProgress callback type for renderMediaOnVercel().
VercelBlobAccess
import type {VercelBlobAccess } from '@remotion/vercel';Either "public" or "private". Used as the access parameter for uploadToVercelBlob().
RenderMediaOnProgress
Re-exported from @remotion/renderer.