@teamnovu/kit-shopware-composables 0.0.9 → 0.0.11

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.
@@ -1,10 +1,8 @@
1
1
  import { GenericRecord } from '../../../api-types/storeApiTypes.d.ts';
2
- import { MaybeRef, ComputedRef } from 'vue';
3
2
  interface SeoUrlEntity {
4
3
  extensions?: {
5
4
  novuSeoUrls?: GenericRecord;
6
5
  };
7
6
  }
8
- export declare const getSeoUrl: <T extends SeoUrlEntity>(entity: T, languageId: string) => string;
9
- export declare const useSeoUrl: <T extends SeoUrlEntity>(entity: MaybeRef<T>, languageId: MaybeRef<string>) => ComputedRef<string>;
7
+ export declare const useSeoUrl: <T extends SeoUrlEntity>() => (entity: T, languageId: string) => string;
10
8
  export {};