Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:quasarframework/quasar into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Sep 17, 2024
2 parents 8edcde1 + 27a5cf5 commit 7f4ee84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app-vite/types/prefetch.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type PrefetchCallback<TState = any> = (
options: PreFetchOptions<TState>
) => void | Promise<void> | Promise<{}>;

declare module "@vue/runtime-core" {
declare module "vue" {
interface ComponentCustomOptions {
preFetch?: PrefetchCallback;
}
Expand Down
2 changes: 1 addition & 1 deletion app-webpack/types/prefetch.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type PrefetchCallback<TState = any> = (
options: PreFetchOptions<TState>
) => void | Promise<void> | Promise<{}>;

declare module "@vue/runtime-core" {
declare module "vue" {
interface ComponentCustomOptions {
preFetch?: PrefetchCallback;
}
Expand Down

0 comments on commit 7f4ee84

Please sign in to comment.