knight-web 2.0.17 → 2.0.19
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/frame/base/AbstractPanel.d.ts +5 -2
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { AbstractObject } from "./AbstractObject";
|
|
1
|
+
import { AbstractObject, AbstractObjectProps } from "./AbstractObject";
|
|
2
2
|
/** 抽象界面基类 */
|
|
3
|
-
export declare abstract class AbstractPanel extends AbstractObject {
|
|
3
|
+
export declare abstract class AbstractPanel<Props extends AbstractPanelProps = AbstractPanelProps> extends AbstractObject<Props> {
|
|
4
|
+
}
|
|
5
|
+
/** 抽象属性接口 */
|
|
6
|
+
export declare abstract class AbstractPanelProps implements AbstractObjectProps {
|
|
4
7
|
}
|