Appearance
type StringKeyOf<T> = Extract<keyof T, string>;
Utility type to get string keys of an object type.
T