@quillmark/wasm 0.112.0 → 0.113.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/CHANGELOG.md +1487 -0
- package/README.md +91 -66
- package/core/wasm.d.ts +117 -182
- package/core/wasm.js +245 -391
- package/core/wasm_bg.wasm +0 -0
- package/core/wasm_bg.wasm.d.ts +5 -11
- package/package.json +2 -2
- package/{backends/pdfform → render}/wasm.d.ts +168 -264
- package/{backends/pdfform → render}/wasm.js +326 -450
- package/{backends/typst → render}/wasm_bg.wasm +0 -0
- package/{backends/typst → render}/wasm_bg.wasm.d.ts +7 -15
- package/runtime/runtime.d.ts +84 -178
- package/runtime/runtime.js +141 -583
- package/backends/pdfform/wasm_bg.wasm +0 -0
- package/backends/pdfform/wasm_bg.wasm.d.ts +0 -107
- package/backends/typst/wasm.d.ts +0 -1511
- package/backends/typst/wasm.js +0 -3008
|
@@ -17,7 +17,7 @@ export type PayloadItem =
|
|
|
17
17
|
/**
|
|
18
18
|
* Paths to `!must_fill` markers nested *inside* `value` (the `value`
|
|
19
19
|
* projection itself is fill-free). Absent when the field has no nested
|
|
20
|
-
* placeholders. Preserved across `insertCard
|
|
20
|
+
* placeholders. Preserved across `insertCard`.
|
|
21
21
|
*/
|
|
22
22
|
nestedFills?: PathStep[][];
|
|
23
23
|
}
|
|
@@ -72,11 +72,10 @@ export interface Content {
|
|
|
72
72
|
islands: ContentIsland[];
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
/** One `\n`-separated segment of `Content.text`, in order. `kind` is
|
|
76
|
-
*
|
|
77
|
-
*
|
|
78
|
-
*
|
|
79
|
-
* `attrs.level`/`attrs.lang` behind a check of the arm you want. */
|
|
75
|
+
/** One `\n`-separated segment of `Content.text`, in order. `kind` is a closed
|
|
76
|
+
* set: a role outside it is refused wherever content is decoded. Every role
|
|
77
|
+
* spells its payload in `attrs`, so `kind === "heading"` narrows `attrs` to
|
|
78
|
+
* `{ level: number }` with no guard. */
|
|
80
79
|
export type ContentLine = {
|
|
81
80
|
containers: ContentContainer[];
|
|
82
81
|
/** A within-block hard line break rather than a new block. Omitted (false) in the common case. */
|
|
@@ -89,57 +88,50 @@ export type ContentLineKind =
|
|
|
89
88
|
| { kind: "heading"; attrs: { level: number } }
|
|
90
89
|
| { kind: "code"; attrs?: { lang?: string } }
|
|
91
90
|
| { kind: "island" }
|
|
92
|
-
| { kind: "rule" }
|
|
93
|
-
| { kind: string; attrs?: unknown };
|
|
91
|
+
| { kind: "rule" };
|
|
94
92
|
|
|
95
|
-
/** An ancestor block a line nests inside, outermost first.
|
|
96
|
-
* `ContentLine.kind
|
|
97
|
-
* and renders transparently (its lines sit at the enclosing level).
|
|
93
|
+
/** An ancestor block a line nests inside, outermost first. Closed like
|
|
94
|
+
* `ContentLine.kind`.
|
|
98
95
|
*
|
|
99
96
|
* Two adjacent lines sit in the same container iff their whole path matches, so
|
|
100
97
|
* `instance` is what tells one container from an adjacent sibling of identical
|
|
101
98
|
* shape — two consecutive quotes, two consecutive lists — which contiguity
|
|
102
99
|
* alone reads as one.
|
|
103
100
|
*
|
|
104
|
-
* **A writer owes a distinct value per adjacent sibling run
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
* distinct pair works; a write is canonicalized to `0`/`1`.
|
|
101
|
+
* **A writer owes a distinct value per adjacent sibling run.** Runs of one shape
|
|
102
|
+
* sharing one arrive as one: a second list's items come back as continuation
|
|
103
|
+
* paragraphs of the first, markers gone. Nothing reports that — an omitted field
|
|
104
|
+
* and a `0` stamped on both are the same write — so a codec flattening a tree
|
|
105
|
+
* takes them from `assignInstances` in `@quillmark/wasm` rather than by hand.
|
|
106
|
+
* Any distinct pair works; a write is canonicalized to `0`/`1`.
|
|
111
107
|
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* first number.
|
|
118
|
-
*
|
|
119
|
-
* Content parsed from a stored document is the one shape that arrives without
|
|
120
|
-
* it — storage omits a zero — and needs a cast. */
|
|
108
|
+
* Absent is `0`, and a read omits it there, so a container with nothing adjacent
|
|
109
|
+
* to be told apart from carries no key. A read does spell one on pairs no writer
|
|
110
|
+
* had to: `1.` beside a list starting at `3` differs by `start`, so those runs
|
|
111
|
+
* arrive apart with nothing written, and the canonical form spends a
|
|
112
|
+
* discriminator anyway because Markdown reads only a list's first number. */
|
|
121
113
|
export type ContentContainer =
|
|
122
114
|
| {
|
|
123
115
|
container: "list_item";
|
|
124
116
|
attrs: { ordered: boolean; start: number; ordinal: number };
|
|
125
|
-
instance
|
|
117
|
+
instance?: number;
|
|
126
118
|
}
|
|
127
|
-
| { container: "quote"; instance
|
|
128
|
-
| { container: string; attrs?: unknown; instance: number };
|
|
119
|
+
| { container: "quote"; instance?: number };
|
|
129
120
|
|
|
130
|
-
/** A mark over char range `[start, end)` into `Content.text`.
|
|
131
|
-
*
|
|
132
|
-
* guard
|
|
133
|
-
* `@quillmark/wasm/runtime`. An `anchor`'s `id` is a caller-supplied opaque
|
|
121
|
+
/** A mark over char range `[start, end)` into `Content.text`. `type` is a
|
|
122
|
+
* closed set, so `type === "link"` narrows `attrs` to `{ url: string }` with no
|
|
123
|
+
* guard. An `anchor`'s `id` is a caller-supplied opaque
|
|
134
124
|
* handle, unique per `Content` and invariant while the mark lives (positions
|
|
135
125
|
* rebase, the id never does); it has no markdown projection and survives only
|
|
136
126
|
* through the edit lane. */
|
|
137
|
-
export type ContentMark = { start: number; end: number } &
|
|
127
|
+
export type ContentMark = { start: number; end: number } & ContentMarkKind;
|
|
128
|
+
|
|
129
|
+
/** A mark's type with its payload, shared by `ContentMark` and a `MarkOp`'s
|
|
130
|
+
* `add` / `remove`. */
|
|
131
|
+
export type ContentMarkKind =
|
|
138
132
|
| { type: "strong" | "emph" | "underline" | "strike" | "code" }
|
|
139
133
|
| { type: "link"; attrs: { url: string } }
|
|
140
|
-
| { type: "anchor"; attrs: { id: string } }
|
|
141
|
-
| { type: string; attrs?: unknown }
|
|
142
|
-
);
|
|
134
|
+
| { type: "anchor"; attrs: { id: string } };
|
|
143
135
|
|
|
144
136
|
/** A cell in a `TableProps`. `marks` rides the prose `ContentMark` shape, but
|
|
145
137
|
* each mark's `start`/`end` are USV offsets into this cell's `text`, not into
|
|
@@ -158,28 +150,25 @@ export interface TableProps {
|
|
|
158
150
|
aligns: ("none" | "left" | "center" | "right")[];
|
|
159
151
|
}
|
|
160
152
|
|
|
161
|
-
/** `props` of a `type: "image"` island.
|
|
153
|
+
/** `props` of a `type: "image"` island. Stores and round-trips; no backend
|
|
154
|
+
* typesets one, and a render that holds one warns `backend::declined_construct`,
|
|
155
|
+
* because what `url` names is undecided. */
|
|
162
156
|
export interface ImageProps {
|
|
163
157
|
url: string;
|
|
164
158
|
alt: string;
|
|
165
159
|
}
|
|
166
160
|
|
|
167
|
-
/** How faithfully the markdown projection can carry an island.
|
|
168
|
-
|
|
169
|
-
export type ContentLossClass = "lossless" | "degraded" | "unrepresentable" | (string & {});
|
|
161
|
+
/** How faithfully the markdown projection can carry an island. */
|
|
162
|
+
export type ContentLossClass = "lossless" | "degraded" | "unrepresentable";
|
|
170
163
|
|
|
171
|
-
/** A structured object occupying one island slot in `Content.text`. `type` is
|
|
172
|
-
*
|
|
173
|
-
* and any other type round-trips with opaque `props`. The open arm blocks
|
|
174
|
-
* narrowing, so read `props` behind the `isTableIsland` / `isImageIsland`
|
|
175
|
-
* guards (from `@quillmark/wasm/runtime`). */
|
|
164
|
+
/** A structured object occupying one island slot in `Content.text`. `type` is a
|
|
165
|
+
* closed set, so `type === "table"` narrows `props` to `TableProps`. */
|
|
176
166
|
export type ContentIsland = {
|
|
177
167
|
id: string;
|
|
178
168
|
loss: ContentLossClass;
|
|
179
169
|
} & (
|
|
180
170
|
| { type: "table"; props: TableProps }
|
|
181
171
|
| { type: "image"; props: ImageProps }
|
|
182
|
-
| { type: string; props: unknown }
|
|
183
172
|
);
|
|
184
173
|
|
|
185
174
|
/**
|
|
@@ -219,6 +208,10 @@ export interface CardAddr {
|
|
|
219
208
|
* A text-splice change set over the USV content (CodeMirror `ChangeSet`
|
|
220
209
|
* semantics), returned by `revise` and by the `rebase` codec. Map a stored
|
|
221
210
|
* position through it with `mapPos`.
|
|
211
|
+
*
|
|
212
|
+
* Applying one admits an `insert` string rather than storing it verbatim: `\r`
|
|
213
|
+
* and the Unicode bidi controls drop, and a line separator — VT, FF, NEL,
|
|
214
|
+
* U+2028, U+2029 — becomes a space. Nothing reports the substitution.
|
|
222
215
|
*/
|
|
223
216
|
export interface Delta {
|
|
224
217
|
ops: ({ retain: number } | { insert: string } | { delete: number })[];
|
|
@@ -229,24 +222,25 @@ export type Assoc = "before" | "after";
|
|
|
229
222
|
|
|
230
223
|
/**
|
|
231
224
|
* A mark edit in final-text coordinates (post-delta, post-line-op). `add` /
|
|
232
|
-
* `remove`
|
|
233
|
-
* anchor by id. An `add` of an `anchor`
|
|
234
|
-
* live in the field; a collision or the
|
|
225
|
+
* `remove` are a `ContentMark` under an op, so a held mark spreads in whole;
|
|
226
|
+
* `removeAnchor` drops one identity anchor by id. An `add` of an `anchor`
|
|
227
|
+
* requires a non-empty `id` not already live in the field; a collision or the
|
|
228
|
+
* empty id throws.
|
|
235
229
|
*/
|
|
236
230
|
export type MarkOp =
|
|
237
|
-
| ({ op: "add" | "remove"
|
|
238
|
-
| { type: "strong" | "emph" | "underline" | "strike" | "code" }
|
|
239
|
-
| { type: "link"; url: string }
|
|
240
|
-
| { type: "anchor"; id: string }
|
|
241
|
-
| { type: string; attrs: unknown }
|
|
242
|
-
))
|
|
231
|
+
| ({ op: "add" | "remove" } & ContentMark)
|
|
243
232
|
| { op: "removeAnchor"; id: string };
|
|
244
233
|
|
|
245
234
|
/**
|
|
246
235
|
* A line/block edit. `split`/`join` splice `\n` in post-`delta`,
|
|
247
236
|
* post-`islandOps` coordinates; `setKind`/`setContainers`/`setContinues` touch
|
|
248
237
|
* metadata. `setContinues` sets or clears a line's within-block hard-break flag
|
|
249
|
-
* (`ContentLine.continues`); `continues: true` on line 0
|
|
238
|
+
* (`ContentLine.continues`); `continues: true` lands as `false` on line 0, which
|
|
239
|
+
* nothing precedes, on a line whose containers differ from the line above, and
|
|
240
|
+
* on one following a heading, island or rule, each a block of one line.
|
|
241
|
+
* `setKind` lands a kind the line's text contradicts — `island` or `rule` over
|
|
242
|
+
* prose, `code` over a slot — as `para`, which is what re-importing the line's
|
|
243
|
+
* own markdown yields. Read the content back to see where an op settled.
|
|
250
244
|
*/
|
|
251
245
|
export type LineOp =
|
|
252
246
|
| { op: "split"; at: number }
|
|
@@ -277,11 +271,19 @@ export type LineOp =
|
|
|
277
271
|
* A `set` stores the `loss` it is given; nothing re-derives the class from the
|
|
278
272
|
* new `props`.
|
|
279
273
|
*
|
|
280
|
-
* An island is *inline* (a slot inside a paragraph)
|
|
281
|
-
*
|
|
282
|
-
*
|
|
283
|
-
*
|
|
284
|
-
*
|
|
274
|
+
* An island is *inline* (a slot inside a paragraph) or a **block** (that slot
|
|
275
|
+
* alone on a line under `kind: "island"`), and for a slot alone on a line the
|
|
276
|
+
* type settles which: markdown writes a `table` as a block and an image inline,
|
|
277
|
+
* so the line's `kind` is read off the type and a `setKind` spelling it
|
|
278
|
+
* otherwise does not survive. Landing a block island is one bundle of all three
|
|
279
|
+
* channels, in the order they apply: `delta` inserts the `\n` that opens the
|
|
280
|
+
* line, `islandOps` inserts the slot, `lineOps` tags the line
|
|
281
|
+
* `{ op: "setKind", kind: "island" }`. `{ op: "split" }` cannot open that line,
|
|
282
|
+
* since line ops run after island ops.
|
|
283
|
+
*
|
|
284
|
+
* A `table` has no inline placement: markdown writes it as a block, so an
|
|
285
|
+
* `insert` whose `at` is not an empty line throws, as does a `set` retyping an
|
|
286
|
+
* inline island into one.
|
|
285
287
|
*/
|
|
286
288
|
export type IslandOp =
|
|
287
289
|
| ({ op: "set" } & ContentIsland)
|
|
@@ -575,15 +577,9 @@ export interface ContentHit {
|
|
|
575
577
|
}
|
|
576
578
|
|
|
577
579
|
/**
|
|
578
|
-
* A schema field address plus its geometry on the page
|
|
579
|
-
*
|
|
580
|
-
*
|
|
581
|
-
* `field` is **not** unique: content fields surface one region per segment
|
|
582
|
-
* (paragraph, heading, whole code fence) and per page each touches, a scalar
|
|
583
|
-
* referenced at several plate sites surfaces each site, and tracked content
|
|
584
|
-
* plus a `field:`-bound widget yields both. Group by `field`. The whole-field
|
|
585
|
-
* highlight is the union of a page's `span`-bearing rects, so inter-paragraph
|
|
586
|
-
* whitespace stays uncovered; `LiveSession.fieldBoxes(field)` owns that union.
|
|
580
|
+
* A schema field address plus its geometry on the page. `field` is **not**
|
|
581
|
+
* unique, and the whole-field highlight is a union `LiveSession.fieldBoxes`
|
|
582
|
+
* owns: the consumer's copy of this contract is `runtime/runtime.d.ts`.
|
|
587
583
|
*/
|
|
588
584
|
export interface FieldRegion {
|
|
589
585
|
/**
|
|
@@ -608,8 +604,36 @@ export interface FieldRegion {
|
|
|
608
604
|
}
|
|
609
605
|
|
|
610
606
|
/**
|
|
611
|
-
*
|
|
607
|
+
* How precisely a `ContentHit.pos` resolved. Never sub-cluster: `cluster` is
|
|
608
|
+
* the finest this API offers, `segment` the floor it degrades to.
|
|
609
|
+
*/
|
|
610
|
+
export type HitGranularity = "cluster" | "segment";
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* Output formats supported by backends. Gated behind the engine surface so
|
|
614
|
+
* tsify omits it from the core bundle, which has no rendering surface.
|
|
615
|
+
*/
|
|
616
|
+
export type OutputFormat = "pdf" | "svg" | "png";
|
|
617
|
+
|
|
618
|
+
/**
|
|
619
|
+
* What a committed `LiveSession.update` changed. `dirtyPages` lists pages whose
|
|
620
|
+
* content differs from the previous compile, including pages the edit added;
|
|
621
|
+
* removed pages are implied by `pageCount`.
|
|
612
622
|
*/
|
|
623
|
+
export interface ChangeSet {
|
|
624
|
+
pageCount: number;
|
|
625
|
+
dirtyPages: number[];
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
export interface Artifact {
|
|
629
|
+
format: OutputFormat;
|
|
630
|
+
/**
|
|
631
|
+
* `serde_bytes` so the boundary emits a real `Uint8Array`, not `number[]`.
|
|
632
|
+
*/
|
|
633
|
+
bytes: Uint8Array;
|
|
634
|
+
mimeType: string;
|
|
635
|
+
}
|
|
636
|
+
|
|
613
637
|
export interface Diagnostic {
|
|
614
638
|
severity: Severity;
|
|
615
639
|
code?: string;
|
|
@@ -629,18 +653,14 @@ export interface Diagnostic {
|
|
|
629
653
|
* `skip_serializing_if`, so an omitted field would be declared required.
|
|
630
654
|
*/
|
|
631
655
|
args?: Record<string, unknown>;
|
|
632
|
-
sourceChain?: string[];
|
|
633
656
|
}
|
|
634
657
|
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
658
|
+
export interface Location {
|
|
659
|
+
file: string;
|
|
660
|
+
line: number;
|
|
661
|
+
column: number;
|
|
662
|
+
}
|
|
640
663
|
|
|
641
|
-
/**
|
|
642
|
-
* Options for rendering.
|
|
643
|
-
*/
|
|
644
664
|
export interface RenderOptions {
|
|
645
665
|
format?: OutputFormat;
|
|
646
666
|
/**
|
|
@@ -649,14 +669,10 @@ export interface RenderOptions {
|
|
|
649
669
|
ppi?: number;
|
|
650
670
|
/**
|
|
651
671
|
* 0-based page indices to render; `undefined` renders all pages. An index
|
|
652
|
-
* `>= pageCount` throws `
|
|
653
|
-
* for PDF output: throws `
|
|
672
|
+
* `>= pageCount` throws `backend::page_index_out_of_bounds`. Not supported
|
|
673
|
+
* for PDF output: throws `backend::page_selection_not_supported`.
|
|
654
674
|
*/
|
|
655
675
|
pages?: number[];
|
|
656
|
-
/**
|
|
657
|
-
* PDF `/Info` `/Producer` override; defaults to `Quillmark <version>`.
|
|
658
|
-
*/
|
|
659
|
-
producer?: string;
|
|
660
676
|
/**
|
|
661
677
|
* Populate `RenderResult.regions` with schema-field geometry, for consumers
|
|
662
678
|
* without a live session. Defaults to `false`. Page indices are
|
|
@@ -665,32 +681,10 @@ export interface RenderOptions {
|
|
|
665
681
|
regions?: boolean;
|
|
666
682
|
}
|
|
667
683
|
|
|
668
|
-
/**
|
|
669
|
-
* Output formats supported by backends. Gated behind the engine surface so
|
|
670
|
-
* tsify omits it from the core bundle, which has no rendering surface.
|
|
671
|
-
*/
|
|
672
|
-
export type OutputFormat = "pdf" | "svg" | "png";
|
|
673
|
-
|
|
674
|
-
/**
|
|
675
|
-
* Rendered artifact (PDF, SVG, etc.).
|
|
676
|
-
*/
|
|
677
|
-
export interface Artifact {
|
|
678
|
-
format: OutputFormat;
|
|
679
|
-
/**
|
|
680
|
-
* `serde_bytes` so the boundary emits a real `Uint8Array`, not `number[]`.
|
|
681
|
-
*/
|
|
682
|
-
bytes: Uint8Array;
|
|
683
|
-
mimeType: string;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
/**
|
|
687
|
-
* Result of a render operation.
|
|
688
|
-
*/
|
|
689
684
|
export interface RenderResult {
|
|
690
685
|
artifacts: Artifact[];
|
|
691
686
|
warnings: Diagnostic[];
|
|
692
687
|
outputFormat: OutputFormat;
|
|
693
|
-
renderTimeMs: number;
|
|
694
688
|
/**
|
|
695
689
|
* Schema-field geometry, populated only when `RenderOptions.regions` asked
|
|
696
690
|
* for it. Page indices are document-space even under a `pages` subset.
|
|
@@ -698,31 +692,9 @@ export interface RenderResult {
|
|
|
698
692
|
regions: FieldRegion[];
|
|
699
693
|
}
|
|
700
694
|
|
|
701
|
-
/**
|
|
702
|
-
* Source location for errors and warnings
|
|
703
|
-
*/
|
|
704
|
-
export interface Location {
|
|
705
|
-
file: string;
|
|
706
|
-
line: number;
|
|
707
|
-
column: number;
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
/**
|
|
711
|
-
* What a committed `LiveSession.update` changed. `dirtyPages` lists pages whose
|
|
712
|
-
* content differs from the previous compile, including pages the edit added;
|
|
713
|
-
* removed pages are implied by `pageCount`.
|
|
714
|
-
*/
|
|
715
|
-
export interface ChangeSet {
|
|
716
|
-
pageCount: number;
|
|
717
|
-
dirtyPages: number[];
|
|
718
|
-
}
|
|
719
|
-
|
|
720
695
|
export type Severity = "error" | "warning";
|
|
721
696
|
|
|
722
697
|
|
|
723
|
-
/**
|
|
724
|
-
* Typed in-memory Quillmark document.
|
|
725
|
-
*/
|
|
726
698
|
export class Document {
|
|
727
699
|
free(): void;
|
|
728
700
|
[Symbol.dispose](): void;
|
|
@@ -744,8 +716,8 @@ export class Document {
|
|
|
744
716
|
*/
|
|
745
717
|
applyChange(addr: Addr | string, bundle: ChangeBundle): void;
|
|
746
718
|
/**
|
|
747
|
-
*
|
|
748
|
-
*
|
|
719
|
+
* A blueprint's fill obligation for the given `quillName`, re-exposed from
|
|
720
|
+
* core. Carries no tool name: pair it with your own next-step directive.
|
|
749
721
|
*/
|
|
750
722
|
static blueprintInstruction(quill_name: string): string;
|
|
751
723
|
/**
|
|
@@ -758,12 +730,6 @@ export class Document {
|
|
|
758
730
|
* which interprets by declared type. An out-of-range `addr.card` throws.
|
|
759
731
|
*/
|
|
760
732
|
bodyMarkdown(addr?: CardAddr): string;
|
|
761
|
-
/**
|
|
762
|
-
* A single composable card by index, so reading one need not materialize
|
|
763
|
-
* every card via [`cards`](Self::cards). An out-of-range `index` throws
|
|
764
|
-
* `edit::index_out_of_range`.
|
|
765
|
-
*/
|
|
766
|
-
card(index: number): Card;
|
|
767
733
|
/**
|
|
768
734
|
* The composable card's own path, `cards.<kind>[index]`: the root
|
|
769
735
|
* [`pathFor`](Self::path_for) extends, for anchoring the card rather than
|
|
@@ -771,9 +737,15 @@ export class Document {
|
|
|
771
737
|
* `cards[index]`.
|
|
772
738
|
*/
|
|
773
739
|
cardPath(index: number): string;
|
|
740
|
+
/**
|
|
741
|
+
* A single composable card by index, so reading one need not materialize
|
|
742
|
+
* every card via [`cards`](Self::cards). An out-of-range `index` throws
|
|
743
|
+
* `edit::index_out_of_range`.
|
|
744
|
+
*/
|
|
745
|
+
card(index: number): Card;
|
|
774
746
|
clone(): Document;
|
|
775
747
|
/**
|
|
776
|
-
* Storage version this build writes via [`
|
|
748
|
+
* Storage version this build writes via [`toStored`](Document::to_stored). The
|
|
777
749
|
* tag advances only when the wire format changes, not on every release.
|
|
778
750
|
*/
|
|
779
751
|
static currentStorageVersion(): string;
|
|
@@ -781,27 +753,22 @@ export class Document {
|
|
|
781
753
|
* Structural equality, excluding parse-time `warnings`.
|
|
782
754
|
*/
|
|
783
755
|
equals(other: Document): boolean;
|
|
784
|
-
/**
|
|
785
|
-
* Render a Diagnostic as the canonical pretty-printed text, so it looks
|
|
786
|
-
* identical whichever consumer surfaces it.
|
|
787
|
-
*/
|
|
788
|
-
static formatDiagnostic(diag: Diagnostic): string;
|
|
789
756
|
/**
|
|
790
757
|
* Authoring-format rules for the card-yaml markdown surface, re-exposed from
|
|
791
758
|
* core. Constant across calls; read once and cache.
|
|
792
759
|
*/
|
|
793
760
|
static formatRules(): string;
|
|
761
|
+
/**
|
|
762
|
+
* Parse markdown into a typed Document. Throws on parse errors.
|
|
763
|
+
*/
|
|
764
|
+
static fromMarkdown(markdown: string): Document;
|
|
794
765
|
/**
|
|
795
766
|
* Reconstruct a `Document` from a versioned storage DTO string produced by
|
|
796
|
-
* [`
|
|
767
|
+
* [`toStored`](Document::to_stored). The result carries no parse-time warnings.
|
|
797
768
|
* Throws if `json` is not a valid storage DTO (malformed JSON, unknown
|
|
798
769
|
* `schema`, missing fields, or unparseable quill reference).
|
|
799
770
|
*/
|
|
800
|
-
static
|
|
801
|
-
/**
|
|
802
|
-
* Parse markdown into a typed Document. Throws on parse errors.
|
|
803
|
-
*/
|
|
804
|
-
static fromMarkdown(markdown: string): Document;
|
|
771
|
+
static fromStored(json: string): Document;
|
|
805
772
|
/**
|
|
806
773
|
* The whole `$ext` map at `addr` (a card address, absent `card` = main), or
|
|
807
774
|
* `undefined` when the card carries none: the `$ext` read that avoids
|
|
@@ -809,12 +776,6 @@ export class Document {
|
|
|
809
776
|
* out-of-range card.
|
|
810
777
|
*/
|
|
811
778
|
getExt(addr?: CardAddr): Record<string, unknown> | undefined;
|
|
812
|
-
/**
|
|
813
|
-
* The value stored under `$ext[ns]` at `addr` (a card address, absent `card`
|
|
814
|
-
* = main), or `undefined`. Throws on a present `field` or an out-of-range
|
|
815
|
-
* card.
|
|
816
|
-
*/
|
|
817
|
-
getExtNamespace(addr: CardAddr, ns: string): unknown;
|
|
818
779
|
/**
|
|
819
780
|
* Read the **verbatim stored value** at `addr`: a field's raw payload value,
|
|
820
781
|
* or the body content when `addr.field` is absent. A bare string is `Addr`
|
|
@@ -831,9 +792,8 @@ export class Document {
|
|
|
831
792
|
* conformed, and this read reports what is there. For the `Content` either
|
|
832
793
|
* way use `reader.getContent`.
|
|
833
794
|
*
|
|
834
|
-
* The body arm is typed `Content
|
|
835
|
-
*
|
|
836
|
-
* which omit a zero: verbatim is the contract, and is why it is `unknown`.
|
|
795
|
+
* The body arm is typed `Content`; a field arm echoes the stored bytes
|
|
796
|
+
* unread, which is the contract and why it is `unknown`.
|
|
837
797
|
*/
|
|
838
798
|
getStored(addr: Addr | string): unknown;
|
|
839
799
|
/**
|
|
@@ -851,26 +811,12 @@ export class Document {
|
|
|
851
811
|
isFill(addr: Addr | string): boolean;
|
|
852
812
|
/**
|
|
853
813
|
* Replace this document's contents **in place** from a versioned storage DTO
|
|
854
|
-
* string: the mutating twin of [`
|
|
855
|
-
* `warnings` are cleared. Throws on an invalid DTO, leaving the
|
|
856
|
-
* unchanged.
|
|
857
|
-
*
|
|
858
|
-
* The cross-WASM-memory `Document` bridge: mutate a document on a
|
|
859
|
-
* backend-memory clone, then write the state back into the caller's
|
|
860
|
-
* canonical document, without the caller re-binding its variable.
|
|
861
|
-
*/
|
|
862
|
-
loadJson(json: string): void;
|
|
863
|
-
/**
|
|
864
|
-
* Build a fresh `Card` from a kind and a flat field map: the ergonomic
|
|
865
|
-
* constructor for `insertCard`, which also takes any `Card` object
|
|
866
|
-
* directly. Each `fields` entry becomes a card field in insertion order;
|
|
867
|
-
* `body` defaults to `""`.
|
|
868
|
-
*
|
|
869
|
-
* Checks only what a detached card can decide alone: field-name grammar and
|
|
870
|
-
* value depth. Kind validity is positional, so `insertCard` is its gate and
|
|
871
|
-
* any kind string is accepted here.
|
|
814
|
+
* string: the mutating twin of [`fromStored`](Document::from_stored).
|
|
815
|
+
* Parse-time `warnings` are cleared. Throws on an invalid DTO, leaving the
|
|
816
|
+
* document unchanged. A caller holding the document need not re-bind its
|
|
817
|
+
* variable.
|
|
872
818
|
*/
|
|
873
|
-
|
|
819
|
+
loadStored(json: string): void;
|
|
874
820
|
/**
|
|
875
821
|
* Move the card at `from` to position `to`. `from == to` is a no-op.
|
|
876
822
|
*/
|
|
@@ -919,17 +865,10 @@ export class Document {
|
|
|
919
865
|
removeCard(index: number): Card | undefined;
|
|
920
866
|
/**
|
|
921
867
|
* Remove the `$ext` map on the card `addr` targets entirely, returning the
|
|
922
|
-
* previous map or `undefined`. Discards every namespace at once
|
|
923
|
-
*
|
|
868
|
+
* previous map or `undefined`. Discards every namespace at once. Throws on
|
|
869
|
+
* a present `field` or an out-of-range card.
|
|
924
870
|
*/
|
|
925
871
|
removeExt(addr?: CardAddr): Record<string, unknown> | undefined;
|
|
926
|
-
/**
|
|
927
|
-
* Remove `$ext[ns]` on the card `addr` targets, returning its value or
|
|
928
|
-
* `undefined`; drops `$ext` once empty. `addr` is a card address (absent =
|
|
929
|
-
* main). Preserves sibling namespaces. Throws on a present `field` or an
|
|
930
|
-
* out-of-range card.
|
|
931
|
-
*/
|
|
932
|
-
removeExtNamespace(addr: CardAddr, ns: string): any;
|
|
933
872
|
/**
|
|
934
873
|
* Remove a field at `addr`, returning the removed value or `undefined`. A
|
|
935
874
|
* bare string is `Addr` shorthand for `{ field }`. A body address throws, as
|
|
@@ -959,12 +898,6 @@ export class Document {
|
|
|
959
898
|
* and keeps `seedCard` pure: the quill never reads the document.
|
|
960
899
|
*/
|
|
961
900
|
seedOverlay(kind: string): Record<string, unknown> | undefined;
|
|
962
|
-
/**
|
|
963
|
-
* Replace the kind of the card at `index`. Payload and body are untouched;
|
|
964
|
-
* schema-aware migration is the caller's responsibility.
|
|
965
|
-
* Throws if `index` is out of range or `newKind` is invalid.
|
|
966
|
-
*/
|
|
967
|
-
setCardKind(index: number, new_kind: string): void;
|
|
968
901
|
/**
|
|
969
902
|
* Replace the QUILL reference string. Throws if `ref_str` is invalid.
|
|
970
903
|
*/
|
|
@@ -972,7 +905,7 @@ export class Document {
|
|
|
972
905
|
/**
|
|
973
906
|
* Read the storage version tag from a raw storage DTO string without a full
|
|
974
907
|
* parse, or `undefined`. Unknown future versions come back as-is, which
|
|
975
|
-
* distinguishes "build too old" from "payload corrupt" when `
|
|
908
|
+
* distinguishes "build too old" from "payload corrupt" when `fromStored`
|
|
976
909
|
* throws. This is the storage version, not a field schema, though the JSON
|
|
977
910
|
* key is spelled `"schema"`: that is the DTO's serde tag.
|
|
978
911
|
*/
|
|
@@ -980,16 +913,12 @@ export class Document {
|
|
|
980
913
|
/**
|
|
981
914
|
* Replace the opaque `$ext` map on the card `addr` targets (absent `card` =
|
|
982
915
|
* main). `value` must be a plain object. `$ext` carries out-of-band consumer
|
|
983
|
-
* state and never reaches the rendered output.
|
|
984
|
-
*
|
|
916
|
+
* state and never reaches the rendered output. The whole map is the write,
|
|
917
|
+
* so a consumer holding one namespace merges the rest:
|
|
918
|
+
* `{...doc.getExt(addr), [ns]: v}`. Throws on a present `field` or an
|
|
919
|
+
* out-of-range card.
|
|
985
920
|
*/
|
|
986
921
|
storeExt(addr: CardAddr, value: any): void;
|
|
987
|
-
/**
|
|
988
|
-
* Merge `value` into `$ext[ns]` on the card `addr` targets, preserving
|
|
989
|
-
* sibling namespaces: the recommended `$ext` write. Throws on a present
|
|
990
|
-
* `field` or an out-of-range card.
|
|
991
|
-
*/
|
|
992
|
-
storeExtNamespace(addr: CardAddr, ns: string, value: any): void;
|
|
993
922
|
/**
|
|
994
923
|
* Store a field verbatim at `addr`, deferring coercion to render; the typed
|
|
995
924
|
* write is [`commitField`](Document::commit_field). A bare string is `Addr`
|
|
@@ -1019,24 +948,18 @@ export class Document {
|
|
|
1019
948
|
* with. Throws if `overlay` cannot be serialized or nests too deep.
|
|
1020
949
|
*/
|
|
1021
950
|
storeSeedOverlay(card_kind: string, overlay: any): void;
|
|
1022
|
-
/**
|
|
1023
|
-
* Serialize this document to a versioned storage DTO string. Prefer it over
|
|
1024
|
-
* `toMarkdown` for persistence: the wire format is frozen per `schema`
|
|
1025
|
-
* version and the output is byte-deterministic within one, so equal
|
|
1026
|
-
* documents hash equal. Parse-time `warnings` are excluded.
|
|
1027
|
-
*/
|
|
1028
|
-
toJson(): string;
|
|
1029
951
|
/**
|
|
1030
952
|
* Emit canonical Quillmark Markdown. Round-trip safe: re-parsing the
|
|
1031
953
|
* result produces a `Document` equal to `self` by value and by type.
|
|
1032
954
|
*/
|
|
1033
955
|
toMarkdown(): string;
|
|
1034
956
|
/**
|
|
1035
|
-
*
|
|
1036
|
-
*
|
|
1037
|
-
*
|
|
957
|
+
* Serialize this document to a versioned storage DTO string. Prefer it over
|
|
958
|
+
* `toMarkdown` for persistence: the wire format is frozen per `schema`
|
|
959
|
+
* version and the output is byte-deterministic within one, so equal
|
|
960
|
+
* documents hash equal. Parse-time `warnings` are excluded.
|
|
1038
961
|
*/
|
|
1039
|
-
|
|
962
|
+
toStored(): string;
|
|
1040
963
|
/**
|
|
1041
964
|
* Number of composable cards, excluding the main card.
|
|
1042
965
|
*/
|
|
@@ -1051,20 +974,20 @@ export class Document {
|
|
|
1051
974
|
* The non-fatal diagnostics of the load that produced this document: parse
|
|
1052
975
|
* warnings, plus `conform::*` warnings when it came through `quill.parse`.
|
|
1053
976
|
* Session state, not document value: `equals` and the storage DTO exclude
|
|
1054
|
-
* it, and `
|
|
977
|
+
* it, and `fromStored` / `loadStored` clear it.
|
|
1055
978
|
*/
|
|
1056
979
|
readonly warnings: Diagnostic[];
|
|
1057
980
|
}
|
|
1058
981
|
|
|
1059
982
|
/**
|
|
1060
|
-
* Live render session: every read serves the current compile. `
|
|
983
|
+
* Live render session: every read serves the current compile. `update(doc)`
|
|
1061
984
|
* recompiles a whole document in place, transactionally — on throw the reads
|
|
1062
985
|
* keep serving the last-good compile. Geometry is per-compile, so re-read it
|
|
1063
|
-
* after each committed `
|
|
986
|
+
* after each committed `update`.
|
|
1064
987
|
*
|
|
1065
988
|
* A zero-page document yields a valid session (`pageCount === 0`) whose
|
|
1066
|
-
* `paint(ctx, 0)` and `pageSize(0)` throw
|
|
1067
|
-
* than catching.
|
|
989
|
+
* `paint(ctx, 0)` and `pageSize(0)` throw as any out-of-range page does; branch
|
|
990
|
+
* on `pageCount === 0` rather than catching.
|
|
1068
991
|
*/
|
|
1069
992
|
export class LiveSession {
|
|
1070
993
|
private constructor();
|
|
@@ -1101,8 +1024,8 @@ export class LiveSession {
|
|
|
1101
1024
|
*/
|
|
1102
1025
|
locate(field: string, pos: number): FieldRegion | undefined;
|
|
1103
1026
|
/**
|
|
1104
|
-
* Page dimensions in points (1 pt = 1/72 inch).
|
|
1105
|
-
*
|
|
1027
|
+
* Page dimensions in points (1 pt = 1/72 inch). Throws if `page` is out of
|
|
1028
|
+
* range, which a zero-page compile makes true of every index.
|
|
1106
1029
|
*/
|
|
1107
1030
|
pageSize(page: number): PageSize;
|
|
1108
1031
|
/**
|
|
@@ -1117,8 +1040,9 @@ export class LiveSession {
|
|
|
1117
1040
|
* its own `<canvas>`: no compositing, sub-rect, or transform reaches through
|
|
1118
1041
|
* this call.
|
|
1119
1042
|
*
|
|
1120
|
-
* Throws if
|
|
1121
|
-
*
|
|
1043
|
+
* Throws if `page` is out of range, `ctx` is the wrong type, either scale is
|
|
1044
|
+
* non-finite or `<= 0`, or the page cannot be rasterized at the resulting
|
|
1045
|
+
* scale (`backend::invalid_raster_scale`).
|
|
1122
1046
|
*/
|
|
1123
1047
|
paint(ctx: CanvasRenderingContext2D | OffscreenCanvasRenderingContext2D, page: number, opts: PaintOptions | undefined): PaintResult;
|
|
1124
1048
|
/**
|
|
@@ -1159,13 +1083,9 @@ export class LiveSession {
|
|
|
1159
1083
|
*/
|
|
1160
1084
|
readonly backendId: string;
|
|
1161
1085
|
readonly pageCount: number;
|
|
1162
|
-
/**
|
|
1163
|
-
* `true` iff `paint` and `pageSize` will succeed for this session.
|
|
1164
|
-
*/
|
|
1165
|
-
readonly supportsCanvas: boolean;
|
|
1166
1086
|
/**
|
|
1167
1087
|
* Non-fatal diagnostics of the session's **current compile**, refreshed by
|
|
1168
|
-
* each committed `
|
|
1088
|
+
* each committed `update`; a failed `update` keeps the last-good compile's.
|
|
1169
1089
|
* Also appended to `RenderResult.warnings` on each `render()`.
|
|
1170
1090
|
*/
|
|
1171
1091
|
readonly warnings: Diagnostic[];
|
|
@@ -1179,7 +1099,7 @@ export class Quill {
|
|
|
1179
1099
|
* Land `doc`'s declared content fields at their canonical rest **in
|
|
1180
1100
|
* place**, returning the `conform::*` diagnostics for values that would not
|
|
1181
1101
|
* commit. The read-repair verb for a document that arrived through the
|
|
1182
|
-
* transport door (`fromMarkdown`, `
|
|
1102
|
+
* transport door (`fromMarkdown`, `fromStored`, a stored row).
|
|
1183
1103
|
*
|
|
1184
1104
|
* Idempotent: an equal value is not rewritten, so YAML comments and stored
|
|
1185
1105
|
* bytes survive. A `!must_fill` marker anywhere in a field's value skips
|
|
@@ -1207,14 +1127,6 @@ export class Quill {
|
|
|
1207
1127
|
* is stale, use `Document.fromMarkdown`, `setQuillRef`, then `quill.conform`.
|
|
1208
1128
|
*/
|
|
1209
1129
|
parse(markdown: string): Document;
|
|
1210
|
-
/**
|
|
1211
|
-
* The resolved-value view of `doc`: for every declared field, the value the
|
|
1212
|
-
* render projection would use and the `FieldSource` rung it came from
|
|
1213
|
-
* (`"authored" | "default" | "blank"`). The card body is a `body` sibling on
|
|
1214
|
-
* its card, never a row in `fields`, and `null` when the kind enables no
|
|
1215
|
-
* body. Value and provenance only; completeness stays `validate`'s.
|
|
1216
|
-
*/
|
|
1217
|
-
resolve(doc: Document): Resolved;
|
|
1218
1130
|
/**
|
|
1219
1131
|
* Seed a starter composable `Card` of the given kind (carries `$kind`),
|
|
1220
1132
|
* layering an optional per-kind seed `overlay` over the schema-example base
|
|
@@ -1244,8 +1156,8 @@ export class Quill {
|
|
|
1244
1156
|
*
|
|
1245
1157
|
* This is how a quill crosses a WASM linear-memory boundary as data: a
|
|
1246
1158
|
* `Quill` built in one build cannot be passed to an engine in another, so
|
|
1247
|
-
* `@quillmark/wasm
|
|
1248
|
-
* `Quill.fromTree` on demand.
|
|
1159
|
+
* the `@quillmark/wasm` runtime layer re-feeds this tree to the backend
|
|
1160
|
+
* build's `Quill.fromTree` on demand.
|
|
1249
1161
|
*/
|
|
1250
1162
|
toTree(): Map<string, Uint8Array>;
|
|
1251
1163
|
/**
|
|
@@ -1262,9 +1174,9 @@ export class Quill {
|
|
|
1262
1174
|
readonly backendId: string;
|
|
1263
1175
|
readonly blueprint: string;
|
|
1264
1176
|
/**
|
|
1265
|
-
* Identity snapshot of the `quill:` section of `Quill.yaml
|
|
1266
|
-
*
|
|
1267
|
-
*
|
|
1177
|
+
* Identity snapshot of the `quill:` section of `Quill.yaml`. Pure config:
|
|
1178
|
+
* output formats are a resolved-backend capability read from
|
|
1179
|
+
* `Quillmark.supportedFormats`, not part of this.
|
|
1268
1180
|
*/
|
|
1269
1181
|
readonly metadata: QuillMetadata;
|
|
1270
1182
|
/**
|
|
@@ -1273,6 +1185,12 @@ export class Quill {
|
|
|
1273
1185
|
* ordering contract.
|
|
1274
1186
|
*/
|
|
1275
1187
|
readonly schema: QuillSchema;
|
|
1188
|
+
/**
|
|
1189
|
+
* The advisory diagnostics of the load that produced this quill: what is
|
|
1190
|
+
* wrong with it short of refusing it. A quill that loads clean answers
|
|
1191
|
+
* `[]`.
|
|
1192
|
+
*/
|
|
1193
|
+
readonly warnings: Diagnostic[];
|
|
1276
1194
|
}
|
|
1277
1195
|
|
|
1278
1196
|
/**
|
|
@@ -1299,12 +1217,6 @@ export class Quillmark {
|
|
|
1299
1217
|
* backend matches the quill's declared one.
|
|
1300
1218
|
*/
|
|
1301
1219
|
supportedFormats(quill: Quill): OutputFormat[];
|
|
1302
|
-
/**
|
|
1303
|
-
* Whether `quill`'s backend can paint sessions to a canvas; `false` when the
|
|
1304
|
-
* backend is unsupported. A cheap probe before mounting a preview UI. The
|
|
1305
|
-
* authoritative answer is the session's `supportsCanvas` getter.
|
|
1306
|
-
*/
|
|
1307
|
-
supportsCanvas(quill: Quill): boolean;
|
|
1308
1220
|
}
|
|
1309
1221
|
|
|
1310
1222
|
/**
|
|
@@ -1403,18 +1315,15 @@ export interface InitOutput {
|
|
|
1403
1315
|
readonly document_clone: (a: number) => number;
|
|
1404
1316
|
readonly document_currentStorageVersion: (a: number) => void;
|
|
1405
1317
|
readonly document_equals: (a: number, b: number) => number;
|
|
1406
|
-
readonly document_formatDiagnostic: (a: number, b: number) => void;
|
|
1407
1318
|
readonly document_formatRules: (a: number) => void;
|
|
1408
|
-
readonly document_fromJson: (a: number, b: number, c: number) => void;
|
|
1409
1319
|
readonly document_fromMarkdown: (a: number, b: number, c: number) => void;
|
|
1320
|
+
readonly document_fromStored: (a: number, b: number, c: number) => void;
|
|
1410
1321
|
readonly document_getExt: (a: number, b: number, c: number) => void;
|
|
1411
|
-
readonly document_getExtNamespace: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
1412
1322
|
readonly document_getStored: (a: number, b: number, c: number) => void;
|
|
1413
1323
|
readonly document_insertCard: (a: number, b: number, c: number, d: number) => void;
|
|
1414
1324
|
readonly document_isFill: (a: number, b: number, c: number) => void;
|
|
1415
|
-
readonly
|
|
1325
|
+
readonly document_loadStored: (a: number, b: number, c: number, d: number) => void;
|
|
1416
1326
|
readonly document_main: (a: number, b: number) => void;
|
|
1417
|
-
readonly document_makeCard: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
1418
1327
|
readonly document_moveCard: (a: number, b: number, c: number, d: number) => void;
|
|
1419
1328
|
readonly document_new: (a: number, b: number, c: number) => void;
|
|
1420
1329
|
readonly document_overwrite: (a: number, b: number, c: number, d: number) => void;
|
|
@@ -1423,23 +1332,19 @@ export interface InitOutput {
|
|
|
1423
1332
|
readonly document_quillRefHint: (a: number) => void;
|
|
1424
1333
|
readonly document_removeCard: (a: number, b: number, c: number) => void;
|
|
1425
1334
|
readonly document_removeExt: (a: number, b: number, c: number) => void;
|
|
1426
|
-
readonly document_removeExtNamespace: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
1427
1335
|
readonly document_removeField: (a: number, b: number, c: number) => void;
|
|
1428
1336
|
readonly document_removeSeedOverlay: (a: number, b: number, c: number, d: number) => void;
|
|
1429
1337
|
readonly document_revise: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
1430
1338
|
readonly document_seedOverlay: (a: number, b: number, c: number, d: number) => void;
|
|
1431
|
-
readonly document_setCardKind: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
1432
1339
|
readonly document_setQuillRef: (a: number, b: number, c: number, d: number) => void;
|
|
1433
1340
|
readonly document_storageVersionOf: (a: number, b: number, c: number) => void;
|
|
1434
1341
|
readonly document_storeExt: (a: number, b: number, c: number, d: number) => void;
|
|
1435
|
-
readonly document_storeExtNamespace: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
1436
1342
|
readonly document_storeField: (a: number, b: number, c: number, d: number) => void;
|
|
1437
1343
|
readonly document_storeFields: (a: number, b: number, c: number, d: number) => void;
|
|
1438
1344
|
readonly document_storeFill: (a: number, b: number, c: number, d: number) => void;
|
|
1439
1345
|
readonly document_storeSeedOverlay: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
1440
|
-
readonly document_toJson: (a: number, b: number) => void;
|
|
1441
1346
|
readonly document_toMarkdown: (a: number, b: number) => void;
|
|
1442
|
-
readonly
|
|
1347
|
+
readonly document_toStored: (a: number, b: number) => void;
|
|
1443
1348
|
readonly document_warnings: (a: number, b: number) => void;
|
|
1444
1349
|
readonly exportMarkdown: (a: number, b: number) => void;
|
|
1445
1350
|
readonly formatDocPath: (a: number, b: number) => void;
|
|
@@ -1447,37 +1352,36 @@ export interface InitOutput {
|
|
|
1447
1352
|
readonly livesession_backendId: (a: number, b: number) => void;
|
|
1448
1353
|
readonly livesession_fieldAt: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
1449
1354
|
readonly livesession_fieldBoxes: (a: number, b: number, c: number, d: number) => void;
|
|
1450
|
-
readonly livesession_locate: (a: number, b: number, c: number, d: number) =>
|
|
1355
|
+
readonly livesession_locate: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
1451
1356
|
readonly livesession_pageCount: (a: number) => number;
|
|
1452
1357
|
readonly livesession_pageSize: (a: number, b: number, c: number) => void;
|
|
1453
1358
|
readonly livesession_paint: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
1454
|
-
readonly livesession_positionAt: (a: number, b: number, c: number, d: number, e: number) =>
|
|
1359
|
+
readonly livesession_positionAt: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
1455
1360
|
readonly livesession_regions: (a: number, b: number) => void;
|
|
1456
1361
|
readonly livesession_render: (a: number, b: number, c: number) => void;
|
|
1457
|
-
readonly livesession_supportsCanvas: (a: number) => number;
|
|
1458
1362
|
readonly livesession_update: (a: number, b: number, c: number) => void;
|
|
1459
1363
|
readonly livesession_warnings: (a: number, b: number) => void;
|
|
1460
1364
|
readonly mapMarks: (a: number, b: number, c: number) => void;
|
|
1461
1365
|
readonly mapPos: (a: number, b: number, c: number, d: number) => void;
|
|
1462
1366
|
readonly parseDocPath: (a: number, b: number, c: number) => void;
|
|
1367
|
+
readonly quill__resolve: (a: number, b: number, c: number) => void;
|
|
1463
1368
|
readonly quill_backendId: (a: number, b: number) => void;
|
|
1464
1369
|
readonly quill_blueprint: (a: number, b: number) => void;
|
|
1465
1370
|
readonly quill_conform: (a: number, b: number, c: number) => void;
|
|
1466
1371
|
readonly quill_fromTree: (a: number, b: number) => void;
|
|
1467
1372
|
readonly quill_metadata: (a: number, b: number) => void;
|
|
1468
1373
|
readonly quill_parse: (a: number, b: number, c: number, d: number) => void;
|
|
1469
|
-
readonly quill_resolve: (a: number, b: number, c: number) => void;
|
|
1470
1374
|
readonly quill_schema: (a: number, b: number) => void;
|
|
1471
1375
|
readonly quill_seedCard: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
1472
1376
|
readonly quill_seedDocument: (a: number) => number;
|
|
1473
1377
|
readonly quill_seedMain: (a: number, b: number) => void;
|
|
1474
1378
|
readonly quill_toTree: (a: number) => number;
|
|
1475
1379
|
readonly quill_validate: (a: number, b: number, c: number) => void;
|
|
1380
|
+
readonly quill_warnings: (a: number, b: number) => void;
|
|
1476
1381
|
readonly quillmark_new: () => number;
|
|
1477
1382
|
readonly quillmark_open: (a: number, b: number, c: number, d: number) => void;
|
|
1478
1383
|
readonly quillmark_render: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
1479
1384
|
readonly quillmark_supportedFormats: (a: number, b: number, c: number) => void;
|
|
1480
|
-
readonly quillmark_supportsCanvas: (a: number, b: number) => number;
|
|
1481
1385
|
readonly rebase: (a: number, b: number, c: number, d: number) => void;
|
|
1482
1386
|
readonly start: () => void;
|
|
1483
1387
|
readonly __wbindgen_export: (a: number, b: number) => number;
|