render-core 1.0.91 → 1.0.92
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/index.d.ts +2 -1
- package/package.json +1 -1
- package/runtime/tools.js +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Component } from "./class/component/component";
|
|
2
2
|
import { routerController } from "render-security/class/Router";
|
|
3
|
+
import { PageController } from "./class/controller/pageController";
|
|
3
4
|
/**
|
|
4
5
|
* This class is the application class.
|
|
5
6
|
*/
|
|
@@ -9,7 +10,7 @@ export declare class RenderJS {
|
|
|
9
10
|
readonly styleLib: Map<string, Map<string, string>>;
|
|
10
11
|
router: routerController;
|
|
11
12
|
private application;
|
|
12
|
-
|
|
13
|
+
page: PageController;
|
|
13
14
|
constructor();
|
|
14
15
|
/**
|
|
15
16
|
* If you want to hava a permission control to your application,you can
|
package/package.json
CHANGED
package/runtime/tools.js
CHANGED