Skip to content

Commit

Permalink
Exports Persisted type
Browse files Browse the repository at this point in the history
  • Loading branch information
joshnuss committed Jul 8, 2024
1 parent 3902097 commit 4547855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { writable as internal, type Writable } from 'svelte/store'
declare type Updater<T> = (value: T) => T;
declare type StoreDict<T> = { [key: string]: Persisted<T> }

interface Persisted<T> extends Writable<T> {
export interface Persisted<T> extends Writable<T> {
reset: () => void
}

Expand Down

0 comments on commit 4547855

Please sign in to comment.