1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2025-02-23 05:24:52 +00:00
action-ansible-playbook/node_modules/yaml/dist/stringify/stringifyString.d.ts

10 lines
363 B
TypeScript
Raw Normal View History

2022-10-21 16:44:44 +02:00
import { Scalar } from '../nodes/Scalar.js';
import type { StringifyContext } from './stringify.js';
2024-01-17 10:08:10 +01:00
interface StringifyScalar {
value: string;
comment?: string | null;
type?: string;
}
export declare function stringifyString(item: Scalar | StringifyScalar, ctx: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
export {};