altsia 0.1.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/altsia.d.ts +29 -0
- package/altsia.js +6378 -0
- package/package.json +18 -0
package/altsia.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type * as MoonBit from "./moonbit.d.ts";
|
|
2
|
+
|
|
3
|
+
export function altsia_to_html_with_visitor(source: MoonBit.String,
|
|
4
|
+
visitor: (_arg0: MoonBit.String) => MoonBit.String,
|
|
5
|
+
language$46$opt: MoonBit.UnboxedOption<MoonBit.String>): MoonBit.String;
|
|
6
|
+
|
|
7
|
+
export function altsia_to_html(source: MoonBit.String,
|
|
8
|
+
language$46$opt: MoonBit.UnboxedOption<MoonBit.String>): MoonBit.String;
|
|
9
|
+
|
|
10
|
+
export function altsia_to_html_with_visitor_result(source: MoonBit.String,
|
|
11
|
+
visitor: (_arg0: MoonBit.String) => MoonBit.String,
|
|
12
|
+
language$46$opt: MoonBit.UnboxedOption<MoonBit.String>): any;
|
|
13
|
+
|
|
14
|
+
export function altsia_to_html_result(source: MoonBit.String,
|
|
15
|
+
language$46$opt: MoonBit.UnboxedOption<MoonBit.String>): any;
|
|
16
|
+
|
|
17
|
+
export function altsia_to_html_with_visitor_diagnostics(source: MoonBit.String,
|
|
18
|
+
visitor: (_arg0: MoonBit.String) => MoonBit.String,
|
|
19
|
+
language$46$opt: MoonBit.UnboxedOption<MoonBit.String>): any;
|
|
20
|
+
|
|
21
|
+
export function altsia_to_html_diagnostics(source: MoonBit.String,
|
|
22
|
+
language$46$opt: MoonBit.UnboxedOption<MoonBit.String>): any;
|
|
23
|
+
|
|
24
|
+
export function altsia_to_html_with_visitor_raise(source: MoonBit.String,
|
|
25
|
+
visitor: (_arg0: MoonBit.String) => MoonBit.String): MoonBit.Result<MoonBit.String, any>;
|
|
26
|
+
|
|
27
|
+
export function altsia_to_html_raise(source: MoonBit.String): MoonBit.Result<MoonBit.String, any>;
|
|
28
|
+
|
|
29
|
+
export function render_error_supported_languages(): any;
|