weddingsite/app.d.ts

9 lines
No EOL
208 B
TypeScript

// app.d.ts
/// <reference types="lucia" />
declare namespace Lucia {
type Auth = import("./auth/lucia").Auth;
type DatabaseUserAttributes = {
username: string;
};
type DatabaseSessionAttributes = {};
}