9 lines
389 B
TypeScript
9 lines
389 B
TypeScript
import type { File } from '@babel/types';
|
|
import { type ApplyVisualControlCodemod } from '@remotion/studio-shared';
|
|
import type { ApplyCodeModReturnType, Change } from './recast-mods';
|
|
export declare const applyVisualControl: ({ file, transformation, changesMade, }: {
|
|
file: File;
|
|
transformation: ApplyVisualControlCodemod;
|
|
changesMade: Change[];
|
|
}) => ApplyCodeModReturnType;
|