cyc-type-def 7.1.1 → 7.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/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -539,8 +539,9 @@ declare enum DialogAction {
|
|
|
539
539
|
interface BaseDialog {
|
|
540
540
|
close(): void;
|
|
541
541
|
}
|
|
542
|
-
interface BaseDialogInput {
|
|
542
|
+
interface BaseDialogInput<T extends Base> {
|
|
543
543
|
action: DialogAction;
|
|
544
|
+
entity: T;
|
|
544
545
|
}
|
|
545
546
|
|
|
546
547
|
interface Period extends Base {
|
package/dist/index.d.ts
CHANGED
|
@@ -539,8 +539,9 @@ declare enum DialogAction {
|
|
|
539
539
|
interface BaseDialog {
|
|
540
540
|
close(): void;
|
|
541
541
|
}
|
|
542
|
-
interface BaseDialogInput {
|
|
542
|
+
interface BaseDialogInput<T extends Base> {
|
|
543
543
|
action: DialogAction;
|
|
544
|
+
entity: T;
|
|
544
545
|
}
|
|
545
546
|
|
|
546
547
|
interface Period extends Base {
|