UNPKG

mfx

Version:

In-browser video editing toolkit, with effects accelerated by WebGL

4 lines (3 loc) 180 B
import type { ExtendedVideoFrame } from "../../frame"; export type UniformProducer<T> = (frame: ExtendedVideoFrame) => Promise<T>; export type Uniform<T> = T | UniformProducer<T>;