10 lines
169 B
TypeScript
10 lines
169 B
TypeScript
import type {Roles} from "./roles.js";
|
|
|
|
export type User = {
|
|
user_id?: string;
|
|
email?: string;
|
|
username?: string;
|
|
roles?: Roles[];
|
|
role?: string;
|
|
};
|