Files
story-studio/remotion/node_modules/@remotion/studio-server/dist/codemods/simple-diff.d.ts
2026-02-21 10:33:18 +01:00

6 lines
186 B
TypeScript

import type { SimpleDiff } from '@remotion/studio-shared';
export declare const simpleDiff: ({ oldLines, newLines, }: {
oldLines: string[];
newLines: string[];
}) => SimpleDiff;