UNPKG

cdk8s

Version:

This is the core library of Cloud Development Kit (CDK) for Kubernetes (cdk8s). cdk8s apps synthesize into standard Kubernetes manifests which can be applied to any Kubernetes cluster.

6 lines (5 loc) 393 B
import { Scalar } from '../nodes/Scalar'; import type { BlockScalar, FlowScalar, SourceToken } from '../parse/cst'; import type { ComposeContext } from './compose-node'; import type { ComposeErrorHandler } from './composer'; export declare function composeScalar(ctx: ComposeContext, token: FlowScalar | BlockScalar, tagToken: SourceToken | null, onError: ComposeErrorHandler): Scalar.Parsed;