UNPKG

338 BTypeScriptView Raw
1import { VideoConfig } from './video-config';
2/**
3 * Get some info about the context of the video that you are making.
4 * Returns an object containing `fps`, `width`, `height` and `durationInFrames`, all of type `number`.
5 * @link https://www.remotion.dev/docs/use-video-config
6 */
7export declare const useVideoConfig: () => VideoConfig;