Type Challenges Judge

Remove Index Signature

提出詳細

type IsConcreteKey<T> = T extends `${infer _}` ? true : false; type RemoveIndexSignature<T> = { [K in keyof T as IsConcreteKey<K> extends true ? K : never]: T[K] }
提出日時2023-08-12 08:53:38
問題Remove Index Signature
ユーザーtekihei2317
ステータスAccepted
テストケース
import type { Equal, Expect } from '@type-challenges/utils' type Foo = { [key: string]: any foo(): void } type Bar = { [key: number]: any bar(): void } type FooBar = { [key: symbol]: any foobar(): void } type Baz = { bar(): void baz: string } type cases = [ Expect<Equal<RemoveIndexSignature<Foo>, { foo(): void }>>, Expect<Equal<RemoveIndexSignature<Bar>, { bar(): void }>>, Expect<Equal<RemoveIndexSignature<FooBar>, { foobar(): void }>>, Expect<Equal<RemoveIndexSignature<Baz>, { bar(): void; baz: string }>>, ]