first commit
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
AlucardDev
2026-08-28 23:32:07 +03:00
commit 7d4ff5962c
35 changed files with 15426 additions and 0 deletions

7
shared/types/auth.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
declare module '#auth-utils' {
interface User {
id: number
login: string
}
}
export {}

3
shared/types/db.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
import type { schema } from 'hub:db'
export type Todo = typeof schema.todos.$inferSelect