Remove Index Signature medium #object-keys

by hiroya iizuka @hiroyaiizuka

Take the Challenge    한국어

Implement `RemoveIndexSignature` , exclude the index signature from object types. For example: ```ts type Foo = { [key: string]: any foo(): void } type A = RemoveIndexSignature // expected { foo(): void } ```
Back Share your Solutions Check out Solutions