2025-11-11 09:19:51 +01:00

21 lines
343 B
TypeScript

export interface IEditUserForm {
username: string;
first_name: string;
last_name: string;
email: string;
phone: string;
merchants: string[];
groups: string[];
job_title: string;
}
export type EditUserField =
| "merchants"
| "groups"
| "job_title"
| "username"
| "first_name"
| "last_name"
| "email"
| "phone";