版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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;