sprof 0.0.83 → 0.0.84
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/core/helpers/Router.d.ts +3 -3
- package/dist/sprof.js +129 -131
- package/dist/sprof.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RouteLocation, RouteLocationNormalizedLoaded, Router as R } from 'vue-router';
|
|
2
2
|
export default abstract class Router {
|
|
3
3
|
static router?: R;
|
|
4
|
-
static
|
|
5
|
-
static
|
|
4
|
+
static Set(router: R): void;
|
|
5
|
+
static Get(): R;
|
|
6
6
|
private static AddRoutes;
|
|
7
7
|
static To(route: string): Promise<void>;
|
|
8
8
|
static ToHome(): Promise<void>;
|
|
@@ -18,6 +18,6 @@ export default abstract class Router {
|
|
|
18
18
|
static GetStringQueryParam(param: string): string;
|
|
19
19
|
static GetNumberQueryParam(param: string): number;
|
|
20
20
|
static GetStringParam(param: string): string;
|
|
21
|
-
static SetQueryParam(param: string, value: string | number):
|
|
21
|
+
static SetQueryParam(param: string, value: string | number): void;
|
|
22
22
|
static Resolve(link: string): RouteLocation;
|
|
23
23
|
}
|