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