@zhongguo168a/yxeditor-common 0.0.47 → 0.0.48
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.ts +5 -5
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1057,11 +1057,11 @@ declare class RouteView extends EventDispatcher {
|
|
|
1057
1057
|
protected _waitCloseComplete: boolean;
|
|
1058
1058
|
get controller(): RouteController;
|
|
1059
1059
|
get route(): Route;
|
|
1060
|
-
onOpen(value: () => void): this;
|
|
1061
|
-
onOpened(value: () => void): this;
|
|
1062
|
-
onClose(value: () => void): this;
|
|
1063
|
-
onClosed(value: () => void): this;
|
|
1064
|
-
onRefresh(value: () => void): this;
|
|
1060
|
+
onOpen(value: (ctx: this) => void): this;
|
|
1061
|
+
onOpened(value: (ctx: this) => void): this;
|
|
1062
|
+
onClose(value: (ctx: this) => void): this;
|
|
1063
|
+
onClosed(value: (ctx: this) => void): this;
|
|
1064
|
+
onRefresh(value: (ctx: this) => void): this;
|
|
1065
1065
|
node: Node;
|
|
1066
1066
|
datas: {};
|
|
1067
1067
|
tags: {};
|