Files
vercel_dashboard_example/.pnpm-store/v11/files/00/565946ee18ee0c5bd6471e4ace05a28eecece98750cf2677b53ecf918cf13cf6c19533ba8f0f368b8ca1e3444068a101a22c9098f45ce9835c38a079b34d75
T
2026-05-12 14:53:15 +00:00

10 lines
357 B
Plaintext

import { Scalar } from '../nodes/Scalar';
import type { StringifyContext } from './stringify';
interface StringifyScalar {
value: string;
comment?: string | null;
type?: string;
}
export declare function stringifyString(item: Scalar | StringifyScalar, ctx: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
export {};