mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
|
|
// app.d.ts
|
||
|
|
/// <reference types="lucia" />
|
||
|
|
declare namespace Lucia {
|
||
|
|
type Auth = import("./auth/lucia").Auth;
|
||
|
|
type DatabaseUserAttributes = {
|
||
|
|
username: string;
|
||
|
|
};
|
||
|
|
type DatabaseSessionAttributes = {};
|
||
|
|
}
|