first commit

This commit is contained in:
becarta
2025-05-16 00:17:42 +02:00
parent ea5c866137
commit bacf566ec9
6020 changed files with 1715262 additions and 0 deletions

17
node_modules/yaml/dist/doc/createNode.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import type { Node } from '../nodes/Node';
import type { Schema } from '../schema/Schema';
import type { CollectionTag, ScalarTag } from '../schema/types';
import type { Replacer } from './Document';
export interface CreateNodeContext {
aliasDuplicateObjects: boolean;
keepUndefined: boolean;
onAnchor: (source: unknown) => string;
onTagObj?: (tagObj: ScalarTag | CollectionTag) => void;
sourceObjects: Map<unknown, {
anchor: string | null;
node: Node | null;
}>;
replacer?: Replacer;
schema: Schema;
}
export declare function createNode(value: unknown, tagName: string | undefined, ctx: CreateNodeContext): Node;