TupleDeepKeyAndValue

接口: TupleDeepKeyAndValue<TParent, T, TKey>

定义于: packages/form-core/src/util-types.ts:56

扩展

类型参数

TParent extends AnyDeepKeyAndValue

T

TKey extends AllTupleKeys<T>

属性

key

ts
key: `${TParent["key"] extends never ? "" : TParent["key"]}[${TKey}]`;
key: `${TParent["key"] extends never ? "" : TParent["key"]}[${TKey}]`;

定义于: packages/form-core/src/util-types.ts:61

覆盖

AnyDeepKeyAndValue.key


value

ts
value:
  | T[TKey]
| Nullable<TParent["value"]>;
value:
  | T[TKey]
| Nullable<TParent["value"]>;

定义于: packages/form-core/src/util-types.ts:62

覆盖

AnyDeepKeyAndValue.value