ApplyKindInput TypeAlias
Suitable for input.
This API is reserved for internal system use and should not be imported directly. It may change at any time without notice.
For more information about our API support guarantees, see here.
Signature
export type ApplyKindInput<T, Kind extends FieldKind, DefaultsAreOptional extends boolean> = [
Kind
] extends [FieldKind.Required] ? T : [Kind] extends [FieldKind.Optional] ? T | undefined : [Kind] extends [FieldKind.Identifier] ? DefaultsAreOptional extends true ? T | undefined : T : never;
Type Parameters
Parameter | Constraint | Description |
---|---|---|
T | ||
Kind | FieldKind | |
DefaultsAreOptional | boolean |