UNPKG

json-merger

Version:

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

12 lines (11 loc) 312 B
import Operation from "./Operation"; export default class SelectOperation extends Operation { name(): string; processInObject(keyword: string, source: any, target?: any): any; } export type SelectKeywordValue = string | { from?: any; multiple?: boolean; path?: string; query?: string; };