UNPKG

jsondiffpatch

Version:

JSON diff & patch (object and array diff, text diff, multiple output formats)

11 lines (10 loc) 285 B
import type { Delta } from "../types.js"; import Context from "./context.js"; declare class ReverseContext extends Context<Delta> { delta: Delta; pipe: "reverse"; nested?: boolean; newName?: `_${number}`; constructor(delta: Delta); } export default ReverseContext;