interface User { id: number; firstName: string; lastName: string; } export const data: User = { id: 1, firstName: 'Guy patch', lastName: 'Theuws patch' };