yyjj 2025.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/README.mbt.md +3 -0
- package/dist/index.cjs +4547 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.mjs +4539 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +50 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type * as MoonBit from "./moonbit.d.ts";
|
|
2
|
+
|
|
3
|
+
export function transform_yaml_to_jsonc(node: any): any;
|
|
4
|
+
|
|
5
|
+
export function transform_jsonc_to_yaml(node: any): any;
|
|
6
|
+
|
|
7
|
+
export function print_yaml(node: any,
|
|
8
|
+
width: MoonBit.UnboxedOption<MoonBit.Int>): MoonBit.String;
|
|
9
|
+
|
|
10
|
+
export function print_jsonc(node: any,
|
|
11
|
+
width: MoonBit.UnboxedOption<MoonBit.Int>): MoonBit.String;
|
|
12
|
+
|
|
13
|
+
export function parse_yaml(input: MoonBit.String): any;
|
|
14
|
+
|
|
15
|
+
export function parse_jsonc(input: MoonBit.String): any;
|
|
16
|
+
|
|
17
|
+
export function yaml_to_jsonc(input: MoonBit.String,
|
|
18
|
+
width: MoonBit.UnboxedOption<MoonBit.Int>): any;
|
|
19
|
+
|
|
20
|
+
export function jsonc_to_yaml(input: MoonBit.String,
|
|
21
|
+
width: MoonBit.UnboxedOption<MoonBit.Int>): any;
|