electron-reactive-event / Internal / Validation / IsPropertyValid
IsPropertyValid Type
ts
type IsPropertyValid<Type, KeyType> = KeyType extends keyof Type
? IsValid<Type>
: never;Type Parameters
Type
Type
KeyType
KeyType
