7 lines
85 B
TypeScript
7 lines
85 B
TypeScript
export interface Employee {
|
|
id:number;
|
|
nom:string;
|
|
prenom:string;
|
|
role:string;
|
|
}
|