@bobfrankston/msger 0.1.347 → 0.1.348
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/README.md +6 -0
- package/msger-native/bin/msgernative.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -409,6 +409,12 @@ interface MessageBoxResult {
|
|
|
409
409
|
closed?: boolean; // True if closed programmatically via handle.close()
|
|
410
410
|
dismissed?: boolean; // True if user pressed Escape
|
|
411
411
|
timeout?: boolean; // True if closed due to timeout
|
|
412
|
+
bounds?: { // Screen-relative window geometry at close (pixels). See msgcommon README.
|
|
413
|
+
x: number;
|
|
414
|
+
y: number;
|
|
415
|
+
width: number;
|
|
416
|
+
height: number;
|
|
417
|
+
};
|
|
412
418
|
debug?: { // Debug info (if debug option was true)
|
|
413
419
|
html: string; // Generated HTML content
|
|
414
420
|
width: number; // Window width
|
|
Binary file
|