Better handle bigint

This commit is contained in:
2024-05-31 14:24:57 +08:00
parent 15ff42d8c4
commit 8437bf1436
36 changed files with 320 additions and 227 deletions

View File

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