/** * Strip an object type of its string index. */ export type StripIndex = { [P in keyof T]: string extends P ? never : T[P] };