UNPKG

@remotion/cli

Version:

Control Remotion features using the `npx remotion` command

6 lines (5 loc) 407 B
import type { WebpackConfiguration } from '@remotion/bundler'; export type WebpackOverrideFn = (currentConfiguration: WebpackConfiguration) => WebpackConfiguration | Promise<WebpackConfiguration>; export declare const defaultOverrideFunction: WebpackOverrideFn; export declare const getWebpackOverrideFn: () => WebpackOverrideFn; export declare const overrideWebpackConfig: (fn: WebpackOverrideFn) => void;