Utility to remove string indexes from types.
The type to remove string indexes from.
type Foo = { a: string; b: string; [key: string]: string; }; type Bar = RemoveStringIndexes<Foo>; // Bar = { // a: string; // b: string; // }; Copy
type Foo = { a: string; b: string; [key: string]: string; }; type Bar = RemoveStringIndexes<Foo>; // Bar = { // a: string; // b: string; // };
Utility to remove string indexes from types.