UNPKG

node-jq

Version:
9 lines (8 loc) 303 B
import { type FilterInput, type JsonInput, type OptionsInput } from './options'; interface Command { command: string; args: string[]; stdin: string; } export declare const commandFactory: (filter: FilterInput, json: JsonInput, options?: OptionsInput, jqPath?: string) => Command; export {};