Type Alias: OptionalProperties<T, K>
Defined in: shared/types/componentProps.ts:456
Utility type for making certain properties optional.
Type Parametersโ
Tโ
T
Kโ
K
extends keyof T
Exampleโ
type OptionalLabelProps = OptionalProperties<FormFieldBaseProperties, "label">;