diff options
author | Wolfgang Müller | 2025-01-27 17:47:42 +0100 |
---|---|---|
committer | Wolfgang Müller | 2025-01-27 17:47:42 +0100 |
commit | 749062bed65a0f740988399ae591d259c71fdc3b (patch) | |
tree | 47e7e177e083f75bcc8b2f1cb3eeb916f7e2f73e /frontend/src/lib/Update.ts | |
parent | 2099fb6e90c9ea3ef769cc3373ed98b61285d393 (diff) | |
download | hircine-749062bed65a0f740988399ae591d259c71fdc3b.tar.gz |
frontend/lint: Fix miscellaneous lint issues
Diffstat (limited to 'frontend/src/lib/Update.ts')
-rw-r--r-- | frontend/src/lib/Update.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/frontend/src/lib/Update.ts b/frontend/src/lib/Update.ts index 507dd52..13aec61 100644 --- a/frontend/src/lib/Update.ts +++ b/frontend/src/lib/Update.ts @@ -12,9 +12,7 @@ interface AssociationUpdate { options?: UpdateOptions | null; } -type Input<T, K extends Key> = { - [Property in K]?: T | null; -}; +type Input<T, K extends Key> = Partial<Record<K, T | null>>; abstract class Entry<K extends Key> { key: K; |