@quillmark/wasm 0.24.0 → 0.24.1
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/bundler/wasm.d.ts +20 -20
- package/bundler/wasm_bg.wasm +0 -0
- package/node-esm/wasm.d.ts +20 -20
- package/node-esm/wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/bundler/wasm.d.ts
CHANGED
|
@@ -10,13 +10,19 @@ export interface Artifact {
|
|
|
10
10
|
mimeType: string;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
export
|
|
13
|
+
export interface Location {
|
|
14
|
+
file: string;
|
|
15
|
+
line: number;
|
|
16
|
+
column: number;
|
|
17
|
+
}
|
|
14
18
|
|
|
15
19
|
export interface ParsedDocument {
|
|
16
20
|
fields: Record<string, any>;
|
|
17
21
|
quillTag: string;
|
|
18
22
|
}
|
|
19
23
|
|
|
24
|
+
export type OutputFormat = "pdf" | "svg" | "txt";
|
|
25
|
+
|
|
20
26
|
export interface Diagnostic {
|
|
21
27
|
severity: Severity;
|
|
22
28
|
code?: string;
|
|
@@ -26,20 +32,25 @@ export interface Diagnostic {
|
|
|
26
32
|
sourceChain: string[];
|
|
27
33
|
}
|
|
28
34
|
|
|
35
|
+
export type Severity = "error" | "warning" | "note";
|
|
36
|
+
|
|
37
|
+
export interface QuillInfo {
|
|
38
|
+
name: string;
|
|
39
|
+
backend: string;
|
|
40
|
+
metadata: Record<string, any>;
|
|
41
|
+
example?: string;
|
|
42
|
+
schema: Record<string, any>;
|
|
43
|
+
defaults: Record<string, any>;
|
|
44
|
+
examples: Record<string, any[]>;
|
|
45
|
+
supportedFormats: OutputFormat[];
|
|
46
|
+
}
|
|
47
|
+
|
|
29
48
|
export interface RenderOptions {
|
|
30
49
|
format?: OutputFormat;
|
|
31
50
|
assets?: Record<string, Uint8Array | number[]>;
|
|
32
51
|
quillName?: string;
|
|
33
52
|
}
|
|
34
53
|
|
|
35
|
-
export type OutputFormat = "pdf" | "svg" | "txt";
|
|
36
|
-
|
|
37
|
-
export interface Location {
|
|
38
|
-
file: string;
|
|
39
|
-
line: number;
|
|
40
|
-
column: number;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
54
|
export interface RenderResult {
|
|
44
55
|
artifacts: Artifact[];
|
|
45
56
|
warnings: Diagnostic[];
|
|
@@ -47,17 +58,6 @@ export interface RenderResult {
|
|
|
47
58
|
renderTimeMs: number;
|
|
48
59
|
}
|
|
49
60
|
|
|
50
|
-
export interface QuillInfo {
|
|
51
|
-
name: string;
|
|
52
|
-
backend: string;
|
|
53
|
-
metadata: Record<string, any>;
|
|
54
|
-
example?: string;
|
|
55
|
-
schema: Record<string, any>;
|
|
56
|
-
defaults: Record<string, any>;
|
|
57
|
-
examples: Record<string, any[]>;
|
|
58
|
-
supportedFormats: OutputFormat[];
|
|
59
|
-
}
|
|
60
|
-
|
|
61
61
|
/**
|
|
62
62
|
* Quillmark WASM Engine
|
|
63
63
|
*
|
package/bundler/wasm_bg.wasm
CHANGED
|
Binary file
|
package/node-esm/wasm.d.ts
CHANGED
|
@@ -10,13 +10,19 @@ export interface Artifact {
|
|
|
10
10
|
mimeType: string;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
export
|
|
13
|
+
export interface Location {
|
|
14
|
+
file: string;
|
|
15
|
+
line: number;
|
|
16
|
+
column: number;
|
|
17
|
+
}
|
|
14
18
|
|
|
15
19
|
export interface ParsedDocument {
|
|
16
20
|
fields: Record<string, any>;
|
|
17
21
|
quillTag: string;
|
|
18
22
|
}
|
|
19
23
|
|
|
24
|
+
export type OutputFormat = "pdf" | "svg" | "txt";
|
|
25
|
+
|
|
20
26
|
export interface Diagnostic {
|
|
21
27
|
severity: Severity;
|
|
22
28
|
code?: string;
|
|
@@ -26,20 +32,25 @@ export interface Diagnostic {
|
|
|
26
32
|
sourceChain: string[];
|
|
27
33
|
}
|
|
28
34
|
|
|
35
|
+
export type Severity = "error" | "warning" | "note";
|
|
36
|
+
|
|
37
|
+
export interface QuillInfo {
|
|
38
|
+
name: string;
|
|
39
|
+
backend: string;
|
|
40
|
+
metadata: Record<string, any>;
|
|
41
|
+
example?: string;
|
|
42
|
+
schema: Record<string, any>;
|
|
43
|
+
defaults: Record<string, any>;
|
|
44
|
+
examples: Record<string, any[]>;
|
|
45
|
+
supportedFormats: OutputFormat[];
|
|
46
|
+
}
|
|
47
|
+
|
|
29
48
|
export interface RenderOptions {
|
|
30
49
|
format?: OutputFormat;
|
|
31
50
|
assets?: Record<string, Uint8Array | number[]>;
|
|
32
51
|
quillName?: string;
|
|
33
52
|
}
|
|
34
53
|
|
|
35
|
-
export type OutputFormat = "pdf" | "svg" | "txt";
|
|
36
|
-
|
|
37
|
-
export interface Location {
|
|
38
|
-
file: string;
|
|
39
|
-
line: number;
|
|
40
|
-
column: number;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
54
|
export interface RenderResult {
|
|
44
55
|
artifacts: Artifact[];
|
|
45
56
|
warnings: Diagnostic[];
|
|
@@ -47,17 +58,6 @@ export interface RenderResult {
|
|
|
47
58
|
renderTimeMs: number;
|
|
48
59
|
}
|
|
49
60
|
|
|
50
|
-
export interface QuillInfo {
|
|
51
|
-
name: string;
|
|
52
|
-
backend: string;
|
|
53
|
-
metadata: Record<string, any>;
|
|
54
|
-
example?: string;
|
|
55
|
-
schema: Record<string, any>;
|
|
56
|
-
defaults: Record<string, any>;
|
|
57
|
-
examples: Record<string, any[]>;
|
|
58
|
-
supportedFormats: OutputFormat[];
|
|
59
|
-
}
|
|
60
|
-
|
|
61
61
|
/**
|
|
62
62
|
* Quillmark WASM Engine
|
|
63
63
|
*
|
package/node-esm/wasm_bg.wasm
CHANGED
|
Binary file
|