mol_plot_all 1.2.1428 → 1.2.1430
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/node.d.ts +2 -2
- package/node.deps.json +1 -1
- package/node.js +13 -2
- package/node.js.map +1 -1
- package/node.mjs +13 -2
- package/node.test.js +13 -7
- package/node.test.js.map +1 -1
- package/package.json +12 -12
- package/web.d.ts +2 -2
- package/web.deps.json +1 -1
- package/web.js +13 -2
- package/web.js.map +1 -1
- package/web.mjs +13 -2
- package/web.test.js +0 -5
- package/web.test.js.map +1 -1
package/node.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ declare namespace $ {
|
|
|
128
128
|
pub_off(pub_pos: number): void;
|
|
129
129
|
track_cut(sub: $mol_wire_pub | null): void;
|
|
130
130
|
track_off(sub: $mol_wire_pub | null): void;
|
|
131
|
-
absorb(quant: $mol_wire_cursor): void;
|
|
131
|
+
absorb(quant: $mol_wire_cursor, pos: number): void;
|
|
132
132
|
destructor(): void;
|
|
133
133
|
}
|
|
134
134
|
}
|
|
@@ -182,7 +182,7 @@ declare namespace $ {
|
|
|
182
182
|
track_cut(): void;
|
|
183
183
|
complete(): void;
|
|
184
184
|
complete_pubs(): void;
|
|
185
|
-
absorb(quant?: $mol_wire_cursor): void;
|
|
185
|
+
absorb(quant?: $mol_wire_cursor, pos?: number): void;
|
|
186
186
|
[$mol_dev_format_head](): any[];
|
|
187
187
|
get pub_empty(): boolean;
|
|
188
188
|
}
|