Discard changes to src/shared/utils/SettingsStore.ts

This commit is contained in:
V 2023-11-28 19:59:13 +01:00 committed by GitHub
parent e75f4bf52a
commit 40e7f992dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,8 +12,8 @@ type ResolvePropDeep<T, P> = P extends `${infer Pre}.${infer Suf}`
? ResolvePropDeep<T[Pre], Suf> ? ResolvePropDeep<T[Pre], Suf>
: any : any
: P extends keyof T : P extends keyof T
? T[P] ? T[P]
: any; : any;
/** /**
* The SettingsStore allows you to easily create a mutable store that * The SettingsStore allows you to easily create a mutable store that