@trebco/treb 23.2.4 → 23.3.3
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/package.json +1 -1
- package/treb-bundle.css +1 -1
- package/treb-bundle.mjs +10 -10
- package/treb.d.ts +4 -1
package/treb.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! API v23.
|
|
1
|
+
/*! API v23.3. Copyright 2018-2023 trebco, llc. All rights reserved. LGPL: https://treb.app/license */
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Global instance. In the base script, this object will be created as an
|
|
@@ -737,6 +737,9 @@ export interface SerializeOptions {
|
|
|
737
737
|
* drop them from cells. but you can leave them in if that's useful.
|
|
738
738
|
*/
|
|
739
739
|
tables?: boolean;
|
|
740
|
+
|
|
741
|
+
/** share resources (images, for now) to prevent writing data URIs more than once */
|
|
742
|
+
share_resources?: boolean;
|
|
740
743
|
}
|
|
741
744
|
|
|
742
745
|
/**
|