type Data = { arrayObject: { firstName: string; lastName: string; }[]; }; type ArrayElementType = A extends readonly (infer T)[] ? T : never t