init commit
This commit is contained in:
13
remotion/node_modules/@remotion/studio-server/dist/codemods/recast-mods.d.ts
generated
vendored
Normal file
13
remotion/node_modules/@remotion/studio-server/dist/codemods/recast-mods.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { File } from '@babel/types';
|
||||
import type { RecastCodemod } from '@remotion/studio-shared';
|
||||
export type Change = {
|
||||
description: string;
|
||||
};
|
||||
export type ApplyCodeModReturnType = {
|
||||
newAst: File;
|
||||
changesMade: Change[];
|
||||
};
|
||||
export declare const applyCodemod: ({ file, codeMod, }: {
|
||||
file: File;
|
||||
codeMod: RecastCodemod;
|
||||
}) => ApplyCodeModReturnType;
|
||||
Reference in New Issue
Block a user