UNPKG

json-conflict-resolver

Version:

A rules-based JSON conflict resolver that parses Git conflict markers, reconstructs ours/theirs, and merges with deterministic strategies — beyond line-based merges.

9 lines (8 loc) 363 B
import { LoggerConfig } from "./types"; export declare const createLogger: (config?: LoggerConfig, debug?: boolean) => Promise<{ info: (fileId: string, msg: string) => void; warn: (fileId: string, msg: string) => void; error: (fileId: string, msg: string) => void; debug: (fileId: string, msg: string) => void; flush: () => Promise<void>; }>;