mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-14 22:08:45 +00:00
15 lines
226 B
TypeScript
15 lines
226 B
TypeScript
import type { Generated } from "kysely";
|
|
|
|
interface UserTable {
|
|
id: Generated<number>;
|
|
email: string;
|
|
nickname: string;
|
|
password: string;
|
|
}
|
|
|
|
declare module "./index" {
|
|
interface Database {
|
|
user: UserTable;
|
|
}
|
|
}
|