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