aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/wallet-api-types.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2024-02-29 01:24:49 -0300
committerSebastian <sebasjm@gmail.com>2024-02-29 01:24:49 -0300
commit46898aef5f6e238dbfe1b54cf1cf99a276b7d114 (patch)
tree22a482a5ba4f6cf7981d460d38d7987cbb39d3e2 /packages/taler-wallet-core/src/wallet-api-types.ts
parent74b9ee559fc57f48a591140eb342cc8e2bbd3dd3 (diff)
downloadwallet-core-46898aef5f6e238dbfe1b54cf1cf99a276b7d114.tar.xz
wip wallet activity
Diffstat (limited to 'packages/taler-wallet-core/src/wallet-api-types.ts')
-rw-r--r--packages/taler-wallet-core/src/wallet-api-types.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/taler-wallet-core/src/wallet-api-types.ts b/packages/taler-wallet-core/src/wallet-api-types.ts
index e5ff6cc26..553155ece 100644
--- a/packages/taler-wallet-core/src/wallet-api-types.ts
+++ b/packages/taler-wallet-core/src/wallet-api-types.ts
@@ -1310,10 +1310,10 @@ type Primitives = string | number | boolean;
type RecursivePartial<T extends object> = {
[P in keyof T]?: T[P] extends Array<infer U extends object>
- ? Array<RecursivePartial<U>>
- : T[P] extends Array<infer J extends Primitives>
- ? Array<J>
- : T[P] extends object
- ? RecursivePartial<T[P]>
- : T[P];
+ ? Array<RecursivePartial<U>>
+ : T[P] extends Array<infer J extends Primitives>
+ ? Array<J>
+ : T[P] extends object
+ ? RecursivePartial<T[P]>
+ : T[P];
} & object;