@oneclick.dev/cms-kit 0.0.60 → 0.0.61
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/cms-kit.cjs +1 -1
- package/dist/cms-kit.js +8 -8
- package/dist/index.d.ts +22 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -348,6 +348,28 @@ export declare type UseQueryBuilder = () => {};
|
|
|
348
348
|
|
|
349
349
|
export declare const useQueryBuilder: () => {};
|
|
350
350
|
|
|
351
|
+
export declare type UseRoute = () => {
|
|
352
|
+
path: string;
|
|
353
|
+
fullPath: string;
|
|
354
|
+
name?: string | null;
|
|
355
|
+
params: Record<string, any>;
|
|
356
|
+
query: Record<string, any>;
|
|
357
|
+
hash: string;
|
|
358
|
+
meta?: Record<string, any>;
|
|
359
|
+
matched?: any[];
|
|
360
|
+
};
|
|
361
|
+
|
|
362
|
+
export declare const useRoute: () => {
|
|
363
|
+
path: string;
|
|
364
|
+
fullPath: string;
|
|
365
|
+
name?: string | null;
|
|
366
|
+
params: Record<string, any>;
|
|
367
|
+
query: Record<string, any>;
|
|
368
|
+
hash: string;
|
|
369
|
+
meta?: Record<string, any>;
|
|
370
|
+
matched?: any[];
|
|
371
|
+
};
|
|
372
|
+
|
|
351
373
|
export { useRunProcess }
|
|
352
374
|
|
|
353
375
|
export declare type UseUtilsService = () => {
|