Skip to content

Commit

Permalink
fix: adjust typings for tree and treeToo
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-aksamentov committed Nov 20, 2024
1 parent ad99cc5 commit 1294e1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/nextclade-web/src/state/reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import controls from 'auspice/src/reducers/controls'
import browserDimensions from 'auspice/src/reducers/browserDimensions'
import notifications from 'auspice/src/reducers/notifications'
import narrative from 'auspice/src/reducers/narrative'
import treeToo from 'auspice/src/reducers/treeToo'
import treeToo from 'auspice/src/reducers/tree/treeToo'
import measurements from 'auspice/src/reducers/measurements'
// END reducers from auspice

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
declare module 'auspice/src/reducers/tree' {
import { AuspiceTreeState } from 'auspice'

declare function tree(state?: TreeState): AuspiceTreeState | undefined
declare function tree(state?: AuspiceTreeState): AuspiceTreeState | undefined
export default tree
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare module 'auspice/src/reducers/treeToo' {
declare module 'auspice/src/reducers/tree/treeToo' {
import { AuspiceTreeState } from 'auspice'

declare function treeToo(state?: AuspiceTreeState): AuspiceTreeState | undefined
Expand Down

0 comments on commit 1294e1b

Please sign in to comment.