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