blob: 70d9e626d5c39475d127f49bbfb7f3eb48a2edd8 (
plain)
1
2
3
4
|
import type { Pair } from './Pair.js';
import { ToJSContext } from './toJS.js';
import type { MapLike } from './YAMLMap.js';
export declare function addPairToJSMap(ctx: ToJSContext | undefined, map: MapLike, { key, value }: Pair): MapLike;
|