mhz-helpers 1.1.2 → 1.1.3
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/composables/useAuth.spec.d.ts +1 -0
- package/dist/helpers/test.d.ts +3 -0
- package/dist/index.js +659 -643
- package/package.json +4 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/helpers/test.d.ts
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
import { Router } from 'vue-router';
|
|
1
2
|
export declare function dataTest(value: string): string;
|
|
2
3
|
export declare function wait(time?: number): Promise<void>;
|
|
4
|
+
export declare const mockedRouter: Router;
|
|
5
|
+
export declare function withSetup<T>(router: Router, composable: () => T): void;
|