mol_dump_lib 0.0.137 → 0.0.139
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 +3 -2
- package/node.deps.json +1 -1
- package/node.js +20 -9
- package/node.js.map +1 -1
- package/node.mjs +20 -9
- package/node.test.js +45 -9
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +3 -2
- package/web.deps.json +1 -1
- package/web.js +20 -9
- package/web.js.map +1 -1
- package/web.mjs +20 -9
- package/web.test.js +25 -0
- package/web.test.js.map +1 -1
package/node.d.ts
CHANGED
|
@@ -231,6 +231,7 @@ declare namespace $ {
|
|
|
231
231
|
abstract put(next: Result | Error | Promise<Result | Error>): Result | Error | Promise<Result | Error>;
|
|
232
232
|
sync(): Awaited<Result>;
|
|
233
233
|
async(): Promise<Result>;
|
|
234
|
+
step(): Promise<null>;
|
|
234
235
|
}
|
|
235
236
|
}
|
|
236
237
|
|
|
@@ -2260,7 +2261,7 @@ declare namespace $.$$ {
|
|
|
2260
2261
|
class $mol_dump_list extends $.$mol_dump_list {
|
|
2261
2262
|
sub(): $mol_dump_value[];
|
|
2262
2263
|
dump_value(index: number): any;
|
|
2263
|
-
expand_all(event?: Event
|
|
2264
|
+
expand_all(event?: Event): void;
|
|
2264
2265
|
}
|
|
2265
2266
|
}
|
|
2266
2267
|
|
|
@@ -2330,7 +2331,7 @@ declare namespace $.$$ {
|
|
|
2330
2331
|
expand_content(): ($mol_view | $mol_dump_list)[];
|
|
2331
2332
|
expandable(): boolean;
|
|
2332
2333
|
row_values(index: number): any[];
|
|
2333
|
-
expand_all(event?: Event
|
|
2334
|
+
expand_all(event?: Event): void;
|
|
2334
2335
|
}
|
|
2335
2336
|
}
|
|
2336
2337
|
|