Skip to content

Commit

Permalink
fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mateothegreat committed Dec 21, 2024
1 parent 84deffb commit 7df78d8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
export { route } from "./actions/route";
export type { Route } from "./instance.svelte";
export { goto, query } from "./methods";
export * from "./router.svelte";
export { Instance as default, QueryString, Router };
export { default as Router } from "./router.svelte";
export { Instance, QueryString };
import { Instance } from "./instance.svelte";
import { QueryString } from "./query.svelte";
import Router from "./router.svelte";

0 comments on commit 7df78d8

Please sign in to comment.