Bump kysely-deno-sqlite to v1.0.1, remove as any from database type

This commit is contained in:
Alex Gleason
2023-08-30 16:12:39 -05:00
parent b7b5e67118
commit af76d8cbae
2 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ interface RelayRow {
const db = new Kysely<DittoDB>({
dialect: new DenoSqliteDialect({
database: new Sqlite(Conf.dbPath) as any,
database: new Sqlite(Conf.dbPath),
}),
});