UNPKG

json-merger

Version:

Merge JSON (or YAML) files and objects with indicators like $import $remove $replace $merge etc

10 lines (9 loc) 269 B
import Operation from "./Operation"; export default class ImportOperation extends Operation { name(): string; processInObject(keyword: string, source: any, target?: any): any; } export type ImportKeywordValue = string | { path: string; params?: any; };