Revert small change to BudiStore

This commit is contained in:
Andrew Kingston 2025-01-03 10:45:29 +00:00
parent c2fbdf505e
commit cf4122e204
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ interface BudiStoreOpts {
export class BudiStore<T> {
store: Writable<T>
subscribe: Readable<T>["subscribe"]
subscribe: Writable<T>["subscribe"]
update: Writable<T>["update"]
set: Writable<T>["set"]