alinea
Version:
Headless git-based CMS
8 lines (7 loc) • 325 B
TypeScript
import type { Shape } from 'alinea/core/Shape';
export type FieldsDiffProps = {
changes: Array<[key: string, shape: Shape]>;
targetA: Record<string, any>;
targetB: Record<string, any>;
};
export declare function FieldsDiff({ changes, targetA, targetB }: FieldsDiffProps): import("react/jsx-runtime").JSX.Element;