kjelsrud.dev/node_modules/yaml/dist/stringify/stringifyString.d.ts
sindrekjelsrud bb41712ce4 add TailwindCSS
+ a lot of node_modules?? unsure what happened
2023-07-20 20:28:44 +02:00

9 lines
363 B
TypeScript

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 {};