gum-jsx 1.1.1 → 1.1.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/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1199,12 +1199,13 @@ declare module 'gum-jsx' {
|
|
|
1199
1199
|
// Evaluation (from eval.js)
|
|
1200
1200
|
// =============================================================================
|
|
1201
1201
|
|
|
1202
|
-
declare module 'gum/eval' {
|
|
1202
|
+
declare module 'gum-jsx/eval' {
|
|
1203
1203
|
/** The name of a theme */
|
|
1204
1204
|
export type themeName = 'light' | 'dark';
|
|
1205
1205
|
|
|
1206
1206
|
/** The arguments for the evaluate function */
|
|
1207
1207
|
export type Svg = Element & {
|
|
1208
|
+
size: point;
|
|
1208
1209
|
svg(): string;
|
|
1209
1210
|
};
|
|
1210
1211
|
|