Files
resumeformatter/frontend/types.ts
2025-10-14 19:51:35 +05:30

10 lines
152 B
TypeScript

export interface Person {
id: string;
firstName: string;
lastName: string;
linkedinUrl: string;
}
export type NewPerson = Omit<Person, 'id'>;