Files
eh-downloader/server/user.ts
2024-05-31 14:24:57 +08:00

9 lines
177 B
TypeScript

import type { UserPermission } from "../db.ts";
export type BUser = {
id: number | bigint;
username: string;
is_admin: boolean;
permissions: UserPermission;
};