This commit is contained in:
2026-05-15 08:32:45 +02:00
parent fc2547bd59
commit 231006e61d
2143 changed files with 0 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import { Scalar } from '../nodes/Scalar.js';
import type { BlockScalar, FlowScalar, SourceToken } from '../parse/cst.js';
import type { ComposeContext } from './compose-node.js';
import type { ComposeErrorHandler } from './composer.js';
export declare function composeScalar(ctx: ComposeContext, token: FlowScalar | BlockScalar, tagToken: SourceToken | null, onError: ComposeErrorHandler): Scalar.Parsed;