blob: 017cc4e7dc1d423fed8ca068d9105cb061610be4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { Scalar } from '../nodes/Scalar.js';
import type { StringifyContext } from './stringify.js';
interface StringifyScalar {
value: string;
comment?: string | null;
type?: string;
}
export declare function stringifyString(item: Scalar | StringifyScalar, ctx: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
export {};
|