2025-10-29 19:34:10 +01:00

13 lines
312 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export interface IUser {
id: string;
email: string;
first_name: string;
last_name: string;
username: string;
phone: string;
job_title: string;
groups: string[]; // or a more specific type if you know whats inside
merchants: string[]; // likewise, refine this if needed
enabled: boolean;
}