alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
8 lines (7 loc) • 314 B
TypeScript
import { Shape } from 'alinea/core';
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;