UNPKG

@pierre/diffs

Version:

27 lines (26 loc) 730 B
import { FileDiffMetadata } from "../types.js"; import { DiffBasePropsReact } from "./types.js"; //#region src/react/FileDiff.d.ts interface FileDiffProps<LAnnotation> extends DiffBasePropsReact<LAnnotation> { fileDiff: FileDiffMetadata; disableWorkerPool?: boolean; } declare function FileDiff<LAnnotation = undefined>({ fileDiff, options, metrics, lineAnnotations, selectedLines, className, style, prerenderedHTML, renderAnnotation, renderCustomHeader, renderHeaderPrefix, renderHeaderMetadata, renderGutterUtility, disableWorkerPool }: FileDiffProps<LAnnotation>): React.JSX.Element; //#endregion export { FileDiff, type FileDiffMetadata, FileDiffProps }; //# sourceMappingURL=FileDiff.d.ts.map