server-esm: Change some more export object to export default object

This commit is contained in:
Elian Doran
2024-07-18 21:47:30 +03:00
parent 55eecb0f61
commit 0ceae0a65e
90 changed files with 90 additions and 90 deletions

View File

@@ -27,7 +27,7 @@ function getColumn<T>(query: string, params: string[] = []): T[] {
return dbConnection.prepare(query).pluck().all(params) as T[];
}
export = {
export default {
getRawRows,
getRow,
getColumn