summaryrefslogtreecommitdiff
path: root/node_modules/yaml/dist/stringify/stringifyString.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/yaml/dist/stringify/stringifyString.d.ts')
-rw-r--r--node_modules/yaml/dist/stringify/stringifyString.d.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/node_modules/yaml/dist/stringify/stringifyString.d.ts b/node_modules/yaml/dist/stringify/stringifyString.d.ts
new file mode 100644
index 0000000..017cc4e
--- /dev/null
+++ b/node_modules/yaml/dist/stringify/stringifyString.d.ts
@@ -0,0 +1,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 {};