We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 484de18 commit 1783137Copy full SHA for 1783137
packages/core/src/lib/search-params.ts
@@ -1,6 +1,9 @@
1
import { URLSearchParams as reactive_URLSearchParams } from "svelte/reactivity";
2
import type { Query } from "./types";
3
4
+// TODO: export from svelte/reactivity was renamed in this release:
5
+// https://github.com/sveltejs/svelte/releases/tag/svelte%405.0.0-next.169
6
+// Will need to bump minimum svelte version when changing this (should probably wait for rc)
7
export class ReactiveSearchParams extends reactive_URLSearchParams {
8
get raw() {
9
const raw: Query = {};
0 commit comments