Skip to content
This repository was archived by the owner on Mar 13, 2023. It is now read-only.

fix type export bug in index file #45

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ if (Sovran) {
} else {
console.warn(LINKING_ERROR);
}
export { createStore, Store, Notify, Unsubscribe } from './store';
export { createStore, type Store, type Notify, type Unsubscribe } from './store';
export { registerBridgeStore } from './bridge';
export * from './persistor';