bard-legends-framework 1.4.1 → 1.4.2
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/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -450,6 +450,7 @@ interface MenuEntityOptions {
|
|
|
450
450
|
readonly closeOnBackgroundClick: boolean;
|
|
451
451
|
}
|
|
452
452
|
declare class MenuEntity extends SingletonEntity {
|
|
453
|
+
static subscribeIsOpen(): Sequence<boolean>;
|
|
453
454
|
constructor(partialOptions: Partial<MenuEntityOptions>);
|
|
454
455
|
onCreate(): SingleEvent;
|
|
455
456
|
onOpen(): SingleEvent;
|
package/dist/index.d.ts
CHANGED
|
@@ -450,6 +450,7 @@ interface MenuEntityOptions {
|
|
|
450
450
|
readonly closeOnBackgroundClick: boolean;
|
|
451
451
|
}
|
|
452
452
|
declare class MenuEntity extends SingletonEntity {
|
|
453
|
+
static subscribeIsOpen(): Sequence<boolean>;
|
|
453
454
|
constructor(partialOptions: Partial<MenuEntityOptions>);
|
|
454
455
|
onCreate(): SingleEvent;
|
|
455
456
|
onOpen(): SingleEvent;
|