aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/utils/index.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-11-28 09:29:14 -0300
committerSebastian <sebasjm@gmail.com>2022-11-28 09:29:14 -0300
commit3577227cc0ff0f9e0c422ae34c4407d88e98ec21 (patch)
tree837b707dbc7d154c5092e50b0296cb8289e0f1ef /packages/taler-wallet-webextension/src/utils/index.ts
parentdcddc4c53a59b087c5e48b6b20ed740514257bc8 (diff)
downloadwallet-core-3577227cc0ff0f9e0c422ae34c4407d88e98ec21.tar.xz
fix #7496 with unit tests
Diffstat (limited to 'packages/taler-wallet-webextension/src/utils/index.ts')
-rw-r--r--packages/taler-wallet-webextension/src/utils/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-webextension/src/utils/index.ts b/packages/taler-wallet-webextension/src/utils/index.ts
index 23cfc7730..c2d7c10a8 100644
--- a/packages/taler-wallet-webextension/src/utils/index.ts
+++ b/packages/taler-wallet-webextension/src/utils/index.ts
@@ -80,7 +80,7 @@ export type StateViewMap<StateType extends { status: string }> = {
[S in StateType as S["status"]]: StateFunc<S>;
};
-type RecursiveState<S extends object> = S | (() => RecursiveState<S>);
+export type RecursiveState<S extends object> = S | (() => RecursiveState<S>);
export function compose<SType extends { status: string }, PType>(
name: string,