You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
405 B
5 lines
405 B
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;
|
|
|