Skip to content

Commit

Permalink
remove unnecessary casting
Browse files Browse the repository at this point in the history
  • Loading branch information
chintannp committed Mar 17, 2022
1 parent 980c873 commit cb1be23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { CommonSQLiteAdapter } from '../common/CommonSQLiteAdapter';
import SQLiteDatabase from './SQLiteDatabase';

const SQLiteAdapter: CommonSQLiteAdapter = new CommonSQLiteAdapter(
export const SQLiteAdapter: CommonSQLiteAdapter = new CommonSQLiteAdapter(
new SQLiteDatabase()
);

export default SQLiteAdapter;
2 changes: 1 addition & 1 deletion packages/datastore-storage-adapter/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default as SQLiteAdapter } from './SQLiteAdapter/SQLiteAdapter';
export { SQLiteAdapter } from './SQLiteAdapter/SQLiteAdapter';

0 comments on commit cb1be23

Please sign in to comment.