Skip to content

Commit

Permalink
fix: db type (#3180)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Feb 22, 2023
1 parent 53c82d7 commit 909d709
Showing 1 changed file with 3 additions and 3 deletions.
@@ -1,15 +1,15 @@
import { IImportTogglesStore } from './import-toggles-store-type';
import { Knex } from 'knex';
import { Db } from '../../db/db';

const T = {
featureStrategies: 'feature_strategies',
features: 'features',
featureTag: 'feature_tag',
};
export class ImportTogglesStore implements IImportTogglesStore {
private db: Knex;
private db: Db;

constructor(db: Knex) {
constructor(db: Db) {
this.db = db;
}

Expand Down

0 comments on commit 909d709

Please sign in to comment.