UNPKG

remotion

Version:

Make videos programmatically

7 lines (6 loc) 283 B
import type { Backend, EffectDefinitionAndStack } from './effect-types.js'; export type Run = { readonly backend: Backend; readonly effects: EffectDefinitionAndStack<unknown>[]; }; export declare const groupByBackend: (effects: EffectDefinitionAndStack<unknown>[]) => Run[];