1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-23 09:17:19 +00:00
action-ansible-playbook/node_modules/yaml/dist/doc/anchors.d.ts

25 lines
964 B
TypeScript
Raw Permalink Normal View History

2024-01-17 09:08:10 +00:00
import type { Node } from '../nodes/Node.js';
2022-10-21 14:44:44 +00:00
import type { Document } from './Document.js';
/**
* Verify that the input string is a valid anchor.
*
* Will throw on errors.
*/
export declare function anchorIsValid(anchor: string): true;
2024-01-17 09:08:10 +00:00
export declare function anchorNames(root: Document<Node, boolean> | Node): Set<string>;
2022-10-21 14:44:44 +00:00
/** Find a new anchor name with the given `prefix` and a one-indexed suffix. */
export declare function findNewAnchor(prefix: string, exclude: Set<string>): string;
2024-01-17 09:08:10 +00:00
export declare function createNodeAnchors(doc: Document<Node, boolean>, prefix: string): {
2022-10-21 14:44:44 +00:00
onAnchor: (source: unknown) => string;
/**
* With circular references, the source node is only resolved after all
* of its child nodes are. This is why anchors are set only after all of
* the nodes have been created.
*/
setAnchors: () => void;
sourceObjects: Map<unknown, {
anchor: string | null;
2024-01-17 09:08:10 +00:00
node: Node | null;
2022-10-21 14:44:44 +00:00
}>;
};