@lazycatcloud/lzc-toolkit 0.0.219 → 0.0.222

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.
Files changed (45) hide show
  1. package/dist/index.es.js +851 -835
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +4 -4
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +1 -1
  6. package/dist/types/components/Loading.vue.d.ts +36 -36
  7. package/dist/types/dialog/Dialog.vue.d.ts +113 -113
  8. package/dist/types/dialog/index.d.ts +17 -17
  9. package/dist/types/dialog/keys.d.ts +2 -2
  10. package/dist/types/directive/index.d.ts +7 -7
  11. package/dist/types/image/Image.vue.d.ts +148 -148
  12. package/dist/types/image/Thumbnail.vue.d.ts +82 -82
  13. package/dist/types/image/useImage.d.ts +14 -14
  14. package/dist/types/index.d.ts +21 -21
  15. package/dist/types/loading/DefaultLoading.vue.d.ts +31 -31
  16. package/dist/types/loading/PageLoading.vue.d.ts +31 -31
  17. package/dist/types/loading/index.d.ts +2 -2
  18. package/dist/types/loading-toast/index.d.ts +47 -47
  19. package/dist/types/loading-toast/index.vue.d.ts +86 -86
  20. package/dist/types/scroll-bar/ScrollBar.vue.d.ts +126 -126
  21. package/dist/types/scroll-bar/index.d.ts +2 -2
  22. package/dist/types/scroll-bar/use/scrollBar.d.ts +14 -14
  23. package/dist/types/scroll-bar/use/type.d.ts +11 -11
  24. package/dist/types/svgIcon/SvgIcon.vue.d.ts +37 -37
  25. package/dist/types/toast/Toast.vue.d.ts +19 -19
  26. package/dist/types/toast/ToastCreator.d.ts +14 -14
  27. package/dist/types/useBackPress/index.d.ts +15 -15
  28. package/dist/types/useDelayAsync/index.d.ts +31 -31
  29. package/dist/types/useDelayLoad/index.d.ts +28 -28
  30. package/dist/types/useDowndrag/index.d.ts +14 -14
  31. package/dist/types/useDragSelect/index.d.ts +55 -55
  32. package/dist/types/useRouterActivated/index.d.ts +4 -4
  33. package/dist/types/useScaleImage/index.d.ts +3165 -3165
  34. package/dist/types/useScaleImage/useGesture.d.ts +13 -13
  35. package/dist/types/useScaleImage/useTouch.d.ts +15 -15
  36. package/dist/types/useScaleImage/useTransition.d.ts +9 -9
  37. package/dist/types/useSelectable/index.d.ts +43 -43
  38. package/dist/types/useSelectable/keys.d.ts +12 -12
  39. package/dist/types/useVirtualList/PullRefresh.vue.d.ts +98 -32
  40. package/dist/types/useVirtualList/VirtualList.vue.d.ts +213 -213
  41. package/dist/types/useVirtualList/index.d.ts +49 -49
  42. package/dist/types/utils/index.d.ts +1 -1
  43. package/dist/types/utils/touch.d.ts +16 -16
  44. package/dist/vite.config.d.ts +2 -2
  45. package/package.json +47 -47
@@ -1,11 +1,11 @@
1
- import type { Ref } from "vue";
2
- export declare type ScrollBarOptions = {
3
- containerEl: Ref<HTMLElement | null>;
4
- sliderEl: Ref<HTMLElement | null>;
5
- autoHeight?: boolean;
6
- performance?: {
7
- scrollTop?: Ref<number>;
8
- };
9
- maxHeightRatio?: number;
10
- observeMethod?: "classList" | "style";
11
- };
1
+ import type { Ref } from "vue";
2
+ export declare type ScrollBarOptions = {
3
+ containerEl: Ref<HTMLElement | null>;
4
+ sliderEl: Ref<HTMLElement | null>;
5
+ autoHeight?: boolean;
6
+ performance?: {
7
+ scrollTop?: Ref<number>;
8
+ };
9
+ maxHeightRatio?: number;
10
+ observeMethod?: "classList" | "style";
11
+ };
@@ -1,37 +1,37 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- name: string;
3
- prefix?: string | undefined;
4
- color?: string | undefined;
5
- width?: string | number | undefined;
6
- height?: string | number | undefined;
7
- }>, {
8
- prefix: string;
9
- color: string;
10
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
- name: string;
12
- prefix?: string | undefined;
13
- color?: string | undefined;
14
- width?: string | number | undefined;
15
- height?: string | number | undefined;
16
- }>, {
17
- prefix: string;
18
- color: string;
19
- }>>>, {
20
- prefix: string;
21
- color: string;
22
- }>;
23
- export default _default;
24
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
25
- declare type __VLS_TypePropsToRuntimeProps<T> = {
26
- [K in keyof T]-?: {} extends Pick<T, K> ? {
27
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
28
- } : {
29
- type: import('vue').PropType<T[K]>;
30
- required: true;
31
- };
32
- };
33
- declare type __VLS_WithDefaults<P, D> = {
34
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
35
- default: D[K];
36
- } : P[K];
37
- };
1
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ name: string;
3
+ prefix?: string | undefined;
4
+ color?: string | undefined;
5
+ width?: string | number | undefined;
6
+ height?: string | number | undefined;
7
+ }>, {
8
+ prefix: string;
9
+ color: string;
10
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
+ name: string;
12
+ prefix?: string | undefined;
13
+ color?: string | undefined;
14
+ width?: string | number | undefined;
15
+ height?: string | number | undefined;
16
+ }>, {
17
+ prefix: string;
18
+ color: string;
19
+ }>>>, {
20
+ prefix: string;
21
+ color: string;
22
+ }>;
23
+ export default _default;
24
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
25
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
26
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
27
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
28
+ } : {
29
+ type: import('vue').PropType<T[K]>;
30
+ required: true;
31
+ };
32
+ };
33
+ declare type __VLS_WithDefaults<P, D> = {
34
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
35
+ default: D[K];
36
+ } : P[K];
37
+ };
@@ -1,19 +1,19 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
- message: string;
3
- position: "bottom" | "top" | "middle";
4
- buttonClickEvent: (parms?: any) => any | null;
5
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
- message: string;
7
- position: "bottom" | "top" | "middle";
8
- buttonClickEvent: (parms?: any) => any | null;
9
- }>>>, {}>;
10
- export default _default;
11
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
12
- declare type __VLS_TypePropsToRuntimeProps<T> = {
13
- [K in keyof T]-?: {} extends Pick<T, K> ? {
14
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
15
- } : {
16
- type: import('vue').PropType<T[K]>;
17
- required: true;
18
- };
19
- };
1
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
+ message: string;
3
+ position: "bottom" | "top" | "middle";
4
+ buttonClickEvent: (parms?: any) => any | null;
5
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
+ message: string;
7
+ position: "bottom" | "top" | "middle";
8
+ buttonClickEvent: (parms?: any) => any | null;
9
+ }>>>, {}>;
10
+ export default _default;
11
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
12
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
13
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
14
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
15
+ } : {
16
+ type: import('vue').PropType<T[K]>;
17
+ required: true;
18
+ };
19
+ };
@@ -1,14 +1,14 @@
1
- interface ToastOptions {
2
- message?: string;
3
- position?: "top" | "middle" | "bottom";
4
- duration?: number;
5
- buttonClickEvent?: (parmas?: any) => any | null;
6
- }
7
- export declare class ToastCreator {
8
- options: ToastOptions;
9
- container: HTMLElement;
10
- constructor(options: ToastOptions);
11
- present(): void;
12
- dismiss(): void;
13
- }
14
- export {};
1
+ interface ToastOptions {
2
+ message?: string;
3
+ position?: "top" | "middle" | "bottom";
4
+ duration?: number;
5
+ buttonClickEvent?: (parmas?: any) => any | null;
6
+ }
7
+ export declare class ToastCreator {
8
+ options: ToastOptions;
9
+ container: HTMLElement;
10
+ constructor(options: ToastOptions);
11
+ present(): void;
12
+ dismiss(): void;
13
+ }
14
+ export {};
@@ -1,15 +1,15 @@
1
- declare global {
2
- interface Window {
3
- onBackPress: any;
4
- }
5
- }
6
- export declare type UseBackPressCallback = () => boolean | undefined | null | void;
7
- export declare function once(callback: Function): () => void;
8
- /**
9
- * callback 返回值为true(boolean)时拦截手势返回
10
- * */
11
- export declare function useBackPress(callback: UseBackPressCallback): {
12
- register: () => void;
13
- unregister: () => void;
14
- };
15
- export default useBackPress;
1
+ declare global {
2
+ interface Window {
3
+ onBackPress: any;
4
+ }
5
+ }
6
+ export declare type UseBackPressCallback = () => boolean | undefined | null | void;
7
+ export declare function once(callback: Function): () => void;
8
+ /**
9
+ * callback 返回值为true(boolean)时拦截手势返回
10
+ * */
11
+ export declare function useBackPress(callback: UseBackPressCallback): {
12
+ register: () => void;
13
+ unregister: () => void;
14
+ };
15
+ export default useBackPress;
@@ -1,31 +1,31 @@
1
- import { Ref } from "vue";
2
- import { LoadingToastOptions } from "../loading-toast";
3
- export interface UseDelayAsyncOptions extends LoadingToastOptions {
4
- /** 是否展示Loading */
5
- loading?: boolean;
6
- /** execute函数执行完后会自动清除Loading */
7
- autoClose?: boolean;
8
- /** 延迟加载Loading的时间(ms) */
9
- delay?: number;
10
- /** debug模式会打印log日志 */
11
- debug?: boolean;
12
- /** 当 error 错误时是否打印错误日志,默认开启 */
13
- printErrorLog?: boolean;
14
- /** 是否需要挂载勾子 */
15
- hook?: boolean;
16
- /** 当execute函数执行完成后执行该回调函数 */
17
- onSuccess?: (() => void) | (() => Promise<void>) | ((res: any) => void) | ((res: any) => Promise<void>) | ((res: any, params: any[]) => void) | ((res: any, params: any[]) => Promise<void>);
18
- /** 抛出捕获到的错误 */
19
- onError?: (() => void) | (() => Promise<void>) | ((err: any) => void) | ((err: any) => Promise<void>) | ((err: any, params: any[]) => void) | ((err: any, params: any[]) => Promise<void>);
20
- }
21
- export declare type UseDelayAsyncExpose = {
22
- /** 是否在执行中 */
23
- processing: Ref<boolean>;
24
- /** 执行函数 */
25
- handler: ExecuteFunction;
26
- /** 清理Loading和内部定时器 */
27
- close: () => Promise<void>;
28
- };
29
- export declare type ExecuteFunction = (...args: any[]) => any;
30
- export declare function useDelayAsync(execute: ExecuteFunction, options?: UseDelayAsyncOptions): UseDelayAsyncExpose;
31
- export default useDelayAsync;
1
+ import { Ref } from "vue";
2
+ import { LoadingToastOptions } from "../loading-toast";
3
+ export interface UseDelayAsyncOptions extends LoadingToastOptions {
4
+ /** 是否展示Loading */
5
+ loading?: boolean;
6
+ /** execute函数执行完后会自动清除Loading */
7
+ autoClose?: boolean;
8
+ /** 延迟加载Loading的时间(ms) */
9
+ delay?: number;
10
+ /** debug模式会打印log日志 */
11
+ debug?: boolean;
12
+ /** 当 error 错误时是否打印错误日志,默认开启 */
13
+ printErrorLog?: boolean;
14
+ /** 是否需要挂载勾子 */
15
+ hook?: boolean;
16
+ /** 当execute函数执行完成后执行该回调函数 */
17
+ onSuccess?: (() => void) | (() => Promise<void>) | ((res: any) => void) | ((res: any) => Promise<void>) | ((res: any, params: any[]) => void) | ((res: any, params: any[]) => Promise<void>);
18
+ /** 抛出捕获到的错误 */
19
+ onError?: (() => void) | (() => Promise<void>) | ((err: any) => void) | ((err: any) => Promise<void>) | ((err: any, params: any[]) => void) | ((err: any, params: any[]) => Promise<void>);
20
+ }
21
+ export declare type UseDelayAsyncExpose = {
22
+ /** 是否在执行中 */
23
+ processing: Ref<boolean>;
24
+ /** 执行函数 */
25
+ handler: ExecuteFunction;
26
+ /** 清理Loading和内部定时器 */
27
+ close: () => Promise<void>;
28
+ };
29
+ export declare type ExecuteFunction = (...args: any[]) => any;
30
+ export declare function useDelayAsync(execute: ExecuteFunction, options?: UseDelayAsyncOptions): UseDelayAsyncExpose;
31
+ export default useDelayAsync;
@@ -1,28 +1,28 @@
1
- import type { VNodeProps } from "vue";
2
- interface Constructor<P = any> {
3
- __isFragment?: never;
4
- __isTeleport?: never;
5
- __isSuspense?: never;
6
- new (...args: any[]): {
7
- $props: P;
8
- };
9
- }
10
- interface DelayLoadOptions<P> {
11
- component: Constructor<P>;
12
- componentProps?: VNodeProps & P;
13
- delay?: number;
14
- }
15
- export declare function useDelayLoadComp<P>({ component, componentProps: props, delay, }: DelayLoadOptions<P>): {
16
- LoadingComp: import("vue").DefineComponent<{}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
17
- [key: string]: any;
18
- }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
19
- };
20
- export declare function useDelayLoad<P>({ component, componentProps: props, delay, }: DelayLoadOptions<P>): {
21
- LoadingComp: import("vue").DefineComponent<{}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
22
- [key: string]: any;
23
- }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
24
- loading: import("vue").Ref<boolean>;
25
- load: () => void;
26
- unload: () => void;
27
- };
28
- export {};
1
+ import type { VNodeProps } from "vue";
2
+ interface Constructor<P = any> {
3
+ __isFragment?: never;
4
+ __isTeleport?: never;
5
+ __isSuspense?: never;
6
+ new (...args: any[]): {
7
+ $props: P;
8
+ };
9
+ }
10
+ interface DelayLoadOptions<P> {
11
+ component: Constructor<P>;
12
+ componentProps?: VNodeProps & P;
13
+ delay?: number;
14
+ }
15
+ export declare function useDelayLoadComp<P>({ component, componentProps: props, delay, }: DelayLoadOptions<P>): {
16
+ LoadingComp: import("vue").DefineComponent<{}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
17
+ [key: string]: any;
18
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
19
+ };
20
+ export declare function useDelayLoad<P>({ component, componentProps: props, delay, }: DelayLoadOptions<P>): {
21
+ LoadingComp: import("vue").DefineComponent<{}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
22
+ [key: string]: any;
23
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
24
+ loading: import("vue").Ref<boolean>;
25
+ load: () => void;
26
+ unload: () => void;
27
+ };
28
+ export {};
@@ -1,14 +1,14 @@
1
- export declare function useDownDrag(): {
2
- state: {
3
- scale: number;
4
- startX: number;
5
- startY: number;
6
- offsetX: number;
7
- offsetY: number;
8
- dragging: boolean;
9
- started: boolean;
10
- };
11
- dragStart: (x: number, y: number) => void;
12
- dragMove: (x: number, y: number) => void;
13
- dragEnd: () => void;
14
- };
1
+ export declare function useDownDrag(): {
2
+ state: {
3
+ scale: number;
4
+ startX: number;
5
+ startY: number;
6
+ offsetX: number;
7
+ offsetY: number;
8
+ dragging: boolean;
9
+ started: boolean;
10
+ };
11
+ dragStart: (x: number, y: number) => void;
12
+ dragMove: (x: number, y: number) => void;
13
+ dragEnd: () => void;
14
+ };
@@ -1,55 +1,55 @@
1
- import { type Ref, type ComputedRef } from "vue";
2
- interface DragOptions {
3
- key?: string;
4
- customAttributeValue?: (val: string) => any;
5
- attribute: string;
6
- selectWay?: "row" | "colum";
7
- scrollOptions?: {
8
- margin?: number;
9
- startSpeed?: number;
10
- maxSpeed?: number;
11
- };
12
- getSelectMap?: () => {
13
- select?: (_: any[]) => void;
14
- unselect?: (_: any[]) => void;
15
- unselectAll?: () => void;
16
- selected?: ComputedRef<any[]>;
17
- };
18
- }
19
- declare type ContainsRefType = Ref<HTMLElement | null | undefined>;
20
- export declare function useDragSelect({ key, customAttributeValue, attribute, selectWay, scrollOptions, getSelectMap, }: DragOptions): {
21
- init: (_containerEl: ContainsRefType) => boolean;
22
- dragStart: (x: number, y: number) => void;
23
- dragMove: (x: number, y: number, hook?: Function) => void;
24
- dragEnd: () => void;
25
- onScroll: () => void;
26
- isSingleClick: () => boolean;
27
- cancelSelect: () => void;
28
- cancelSelectAllBySingleClick: () => void;
29
- selectFn: ComputedRef<import("@vueuse/shared").PromisifyFn<() => void>>;
30
- getAttributeValue: (val: string) => any;
31
- incrementalSelect: Ref<boolean>;
32
- selectRange: ComputedRef<{
33
- left: number;
34
- top: number;
35
- width: number;
36
- height: number;
37
- }>;
38
- isPressing: Ref<boolean>;
39
- containerEl: ContainsRefType;
40
- };
41
- export declare function useDragSelectByPc(options: DragOptions): {
42
- init: (_containerEl: ContainsRefType) => false | undefined;
43
- unMount: () => void;
44
- };
45
- interface MobileDragOptions {
46
- joinSelectMode?: Function;
47
- pressTime?: number;
48
- selectModeRef?: Ref<boolean>;
49
- horizontalDragThreshold?: number;
50
- }
51
- export declare function useDragSelectByMobile(options: DragOptions, mobileOptions?: MobileDragOptions): {
52
- init: (_containerEl: ContainsRefType) => false | undefined;
53
- unMount: () => void;
54
- };
55
- export {};
1
+ import { type Ref, type ComputedRef } from "vue";
2
+ interface DragOptions {
3
+ key?: string;
4
+ customAttributeValue?: (val: string) => any;
5
+ attribute: string;
6
+ selectWay?: "row" | "colum";
7
+ scrollOptions?: {
8
+ margin?: number;
9
+ startSpeed?: number;
10
+ maxSpeed?: number;
11
+ };
12
+ getSelectMap?: () => {
13
+ select?: (_: any[]) => void;
14
+ unselect?: (_: any[]) => void;
15
+ unselectAll?: () => void;
16
+ selected?: ComputedRef<any[]>;
17
+ };
18
+ }
19
+ declare type ContainsRefType = Ref<HTMLElement | null | undefined>;
20
+ export declare function useDragSelect({ key, customAttributeValue, attribute, selectWay, scrollOptions, getSelectMap, }: DragOptions): {
21
+ init: (_containerEl: ContainsRefType) => boolean;
22
+ dragStart: (x: number, y: number) => void;
23
+ dragMove: (x: number, y: number, hook?: Function) => void;
24
+ dragEnd: () => void;
25
+ onScroll: () => void;
26
+ isSingleClick: () => boolean;
27
+ cancelSelect: () => void;
28
+ cancelSelectAllBySingleClick: () => void;
29
+ selectFn: ComputedRef<import("@vueuse/shared").PromisifyFn<() => void>>;
30
+ getAttributeValue: (val: string) => any;
31
+ incrementalSelect: Ref<boolean>;
32
+ selectRange: ComputedRef<{
33
+ left: number;
34
+ top: number;
35
+ width: number;
36
+ height: number;
37
+ }>;
38
+ isPressing: Ref<boolean>;
39
+ containerEl: ContainsRefType;
40
+ };
41
+ export declare function useDragSelectByPc(options: DragOptions): {
42
+ init: (_containerEl: ContainsRefType) => false | undefined;
43
+ unMount: () => void;
44
+ };
45
+ interface MobileDragOptions {
46
+ joinSelectMode?: Function;
47
+ pressTime?: number;
48
+ selectModeRef?: Ref<boolean>;
49
+ horizontalDragThreshold?: number;
50
+ }
51
+ export declare function useDragSelectByMobile(options: DragOptions, mobileOptions?: MobileDragOptions): {
52
+ init: (_containerEl: ContainsRefType) => false | undefined;
53
+ unMount: () => void;
54
+ };
55
+ export {};
@@ -1,4 +1,4 @@
1
- export declare function useRouterActivated(): {
2
- isActivated: import("vue").Ref<boolean>;
3
- };
4
- export default useRouterActivated;
1
+ export declare function useRouterActivated(): {
2
+ isActivated: import("vue").Ref<boolean>;
3
+ };
4
+ export default useRouterActivated;