mol_dump_lib 0.0.136 → 0.0.138
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 +52 -10
- 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 +32 -1
- package/web.test.js.map +1 -1
package/package.json
CHANGED
package/web.d.ts
CHANGED
|
@@ -217,6 +217,7 @@ declare namespace $ {
|
|
|
217
217
|
abstract put(next: Result | Error | Promise<Result | Error>): Result | Error | Promise<Result | Error>;
|
|
218
218
|
sync(): Awaited<Result>;
|
|
219
219
|
async(): Promise<Result>;
|
|
220
|
+
step(): Promise<null>;
|
|
220
221
|
}
|
|
221
222
|
}
|
|
222
223
|
|
|
@@ -2123,7 +2124,7 @@ declare namespace $.$$ {
|
|
|
2123
2124
|
class $mol_dump_list extends $.$mol_dump_list {
|
|
2124
2125
|
sub(): $mol_dump_value[];
|
|
2125
2126
|
dump_value(index: number): any;
|
|
2126
|
-
expand_all(event?: Event
|
|
2127
|
+
expand_all(event?: Event): void;
|
|
2127
2128
|
}
|
|
2128
2129
|
}
|
|
2129
2130
|
|
|
@@ -2193,7 +2194,7 @@ declare namespace $.$$ {
|
|
|
2193
2194
|
expand_content(): ($mol_view | $mol_dump_list)[];
|
|
2194
2195
|
expandable(): boolean;
|
|
2195
2196
|
row_values(index: number): any[];
|
|
2196
|
-
expand_all(event?: Event
|
|
2197
|
+
expand_all(event?: Event): void;
|
|
2197
2198
|
}
|
|
2198
2199
|
}
|
|
2199
2200
|
|