alinea
Version:
Headless git-based CMS
11 lines (10 loc) • 464 B
TypeScript
import { ListRow, type ListShape } from 'alinea/core/shape/ListShape';
import type { ComponentType } from 'react';
import type { FieldsDiffProps } from './FieldsDiff.js';
export type ListDiffProps = {
FieldsDiff: ComponentType<FieldsDiffProps>;
shape: ListShape<any>;
valueA: Array<ListRow>;
valueB: Array<ListRow>;
};
export declare function ListDiff({ FieldsDiff, shape, valueA, valueB }: ListDiffProps): import("react/jsx-runtime").JSX.Element;