@vuetify/one 1.1.7 → 1.1.8

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/index.d.ts +1 -1
  2. package/dist/index.js +1136 -1059
  3. package/package.json +6 -6
package/dist/index.d.ts CHANGED
@@ -538,7 +538,7 @@ declare const useHttpStore: pinia.StoreDefinition<"http", {
538
538
  }, {}, {
539
539
  fetch<T = any>(url: string, options?: RequestInit): Promise<T>;
540
540
  post<T_1 = any>(url: string, body?: any, options?: RequestInit): Promise<T_1>;
541
- put<T_2 = any>(url: string, body?: any, options?: RequestInit): Promise<T_2>;
541
+ form<T_2 = any>(url: string, body?: any, options?: RequestInit): Promise<T_2>;
542
542
  get<T_3 = any>(url: string, options?: RequestInit): Promise<T_3>;
543
543
  delete(url: string, options?: RequestInit): Promise<Response>;
544
544
  }>;