@pierre/diffs
Version:
14 lines (13 loc) • 420 B
TypeScript
import { DiffFileInput, FileContents } from "../types.js";
//#region src/utils/getDiffFileInput.d.ts
interface GetDiffFileInputProps {
oldFile?: FileContents | null;
newFile?: FileContents | null;
}
declare function getDiffFileInput({
oldFile,
newFile
}: GetDiffFileInputProps, context: string): DiffFileInput | undefined;
//#endregion
export { getDiffFileInput };
//# sourceMappingURL=getDiffFileInput.d.ts.map