website/types.ts

7 lines
96 B
TypeScript
Raw Normal View History

export interface User {
firstname: string
lastname: string
mail: string
groupes: string[]
}