UNPKG

json-type-cli

Version:

High-performance JSON Pointer implementation

8 lines (7 loc) 298 B
import type { CliCodec } from '../types'; export declare class CliCodecTree implements CliCodec<'tree'> { readonly id = "tree"; readonly description = "Human-readable tree representation of the JSON object"; encode(value: unknown): Uint8Array; decode(bytes: Uint8Array): unknown; }