@spash/frontlib 0.0.25-beta.2 → 0.0.25

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 (3) hide show
  1. package/dist/main.d.ts +0 -2
  2. package/dist/main.js +2852 -2872
  3. package/package.json +1 -1
package/dist/main.d.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import { App } from 'vue';
2
2
  import { AxiosInstance } from 'axios';
3
- import { ComputedRef } from 'vue';
4
3
  import { Config } from 'tailwindcss/types/config';
5
4
  import { DateTime } from 'luxon';
6
5
  import { DateTimeUnit } from 'luxon';
@@ -634,7 +633,6 @@ export declare const useHelper: ({ t, router }?: {
634
633
  arrayUniqueValue: (array: any[], key: string) => any[];
635
634
  sleep: (ms: number) => Promise<unknown>;
636
635
  checkIfComponentExists: (componentName: string) => boolean;
637
- apiUrl: ComputedRef<string>;
638
636
  };
639
637
 
640
638
  export { useI18n }