/** *
* * ## Installation * * ```bash npm2yarn * npm install @auth/kysely-adapter kysely * ``` * * @module @auth/kysely-adapter */ import { Kysely, SqliteAdapter } from "kysely" import { type Adapter, type AdapterUser, type AdapterAccount, type AdapterSession, type VerificationToken, isDate, } from "@auth/core/adapters" export interface Database { User: AdapterUser Account: AdapterAccount Session: AdapterSession VerificationToken: VerificationToken } export const format = { from