main
Last change
on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
741 bytes
|
Line | |
---|
1 | import type { CreateNodeContext } from '../../doc/createNode.js';
|
---|
2 | import type { ParsedNode } from '../../nodes/Node.js';
|
---|
3 | import { Pair } from '../../nodes/Pair.js';
|
---|
4 | import { YAMLMap } from '../../nodes/YAMLMap.js';
|
---|
5 | import { YAMLSeq } from '../../nodes/YAMLSeq.js';
|
---|
6 | import type { Schema } from '../../schema/Schema.js';
|
---|
7 | import type { CollectionTag } from '../types.js';
|
---|
8 | export declare function resolvePairs(seq: YAMLSeq.Parsed<ParsedNode | Pair<ParsedNode, ParsedNode | null>> | YAMLMap.Parsed, onError: (message: string) => void): YAMLSeq.Parsed<Pair<ParsedNode, ParsedNode | null>>;
|
---|
9 | export declare function createPairs(schema: Schema, iterable: unknown, ctx: CreateNodeContext): YAMLSeq<unknown>;
|
---|
10 | export declare const pairs: CollectionTag;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.