UNPKG

468 BTypeScriptView Raw
1import type { ToJSContext } from '../../nodes/toJS.js';
2import type { MapLike } from '../../nodes/YAMLMap.js';
3import type { ScalarTag } from '../types.js';
4export declare const merge: ScalarTag & {
5 identify(value: unknown): boolean;
6 test: RegExp;
7};
8export declare const isMergeKey: (ctx: ToJSContext | undefined, key: unknown) => boolean | undefined;
9export declare function addMergeToJSMap(ctx: ToJSContext | undefined, map: MapLike, value: unknown): void;