mol_dump_lib 0.0.3 → 0.0.5
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 +23 -9
- package/node.js.map +1 -1
- package/node.mjs +23 -9
- package/node.test.js +23 -9
- package/node.test.js.map +1 -1
- package/node.view.tree +2 -2
- package/package.json +1 -1
- package/web.d.ts +3 -2
- package/web.deps.json +1 -1
- package/web.js +23 -9
- package/web.js.map +1 -1
- package/web.mjs +23 -9
- package/web.view.tree +2 -2
package/node.d.ts
CHANGED
|
@@ -586,6 +586,7 @@ declare namespace $ {
|
|
|
586
586
|
}
|
|
587
587
|
|
|
588
588
|
declare namespace $ {
|
|
589
|
+
function $mol_style_attach_force(): HTMLStyleElement;
|
|
589
590
|
function $mol_style_attach(id: string, text: string): HTMLStyleElement | null;
|
|
590
591
|
}
|
|
591
592
|
|
|
@@ -1965,8 +1966,8 @@ declare namespace $ {
|
|
|
1965
1966
|
|
|
1966
1967
|
declare namespace $ {
|
|
1967
1968
|
class $mol_dump_value extends $mol_view {
|
|
1968
|
-
value(): any;
|
|
1969
|
-
preview_show(): boolean;
|
|
1969
|
+
value(next?: any): any;
|
|
1970
|
+
preview_show(next?: any): boolean;
|
|
1970
1971
|
sub(): readonly any[];
|
|
1971
1972
|
simple(): string;
|
|
1972
1973
|
Simple(): $$.$mol_text_code;
|