stringifyPair.d.ts 249 B

123
  1. import type { Pair } from '../nodes/Pair.js';
  2. import { StringifyContext } from './stringify.js';
  3. export declare function stringifyPair({ key, value }: Readonly<Pair>, ctx: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;