knight-web 2.0.16 → 2.0.17
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/core/Navgation.d.ts +2 -2
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ export declare class Navgation {
|
|
|
27
27
|
/** 整合路由 */
|
|
28
28
|
private OnConcat;
|
|
29
29
|
/** 导航 */
|
|
30
|
-
OnNavigate(
|
|
30
|
+
OnNavigate(pathName: string, search?: string): void;
|
|
31
31
|
/** 前进 */
|
|
32
32
|
OnForward(): void;
|
|
33
33
|
/** 后退 */
|
|
@@ -43,7 +43,7 @@ export declare class Navgation {
|
|
|
43
43
|
/** 重新加载当前页面 */
|
|
44
44
|
OnReload(): void;
|
|
45
45
|
/** 从会话历史中删除当前页面并导航到给定的URL */
|
|
46
|
-
OnReplace(url: string,
|
|
46
|
+
OnReplace(url: string, search: string): void;
|
|
47
47
|
}
|
|
48
48
|
/** 路由Search参数 */
|
|
49
49
|
export interface ISearchParams {
|