ObjectAccessor

类型别名: ObjectAccessor<TParent, TKey>

ts
type ObjectAccessor<TParent, TKey> = TParent["key"] extends never ? `${TKey}` : `${TParent["key"]}.${TKey}`;
type ObjectAccessor<TParent, TKey> = TParent["key"] extends never ? `${TKey}` : `${TParent["key"]}.${TKey}`;

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

类型参数

TParent extends AnyDeepKeyAndValue

TKey extends string | number