mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 05:38:44 +08:00
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
import type { UserPermission } from "../db.ts";
|
|
|
|
export type BUser = {
|
|
id: number | bigint;
|
|
username: string;
|
|
is_admin: boolean;
|
|
permissions: UserPermission;
|
|
};
|