UNPKG

opencoder

Version:
10 lines (9 loc) 273 B
import type { Hunk } from "diff"; import * as React from "react"; type Props = { filePath: string; structuredPatch: Hunk[]; verbose: boolean; }; export declare function FileContentDiff({ filePath, structuredPatch, verbose }: Props): React.ReactNode; export {};