mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-10 17:53:36 +02:00
fix: missing interface impl
This commit is contained in:
parent
7229364b4a
commit
771b8021c4
@ -16,6 +16,7 @@ import { ensureStringValue } from '../util/ensureStringValue';
|
||||
import { mapValues } from '../util/map-values';
|
||||
import { Db } from './db';
|
||||
import Raw = Knex.Raw;
|
||||
import { IFeatureToggleClientStore } from '../types';
|
||||
|
||||
export interface IGetAllFeatures {
|
||||
featureQuery?: IFeatureToggleQuery;
|
||||
@ -29,7 +30,9 @@ export interface IGetAdminFeatures {
|
||||
userId?: number;
|
||||
}
|
||||
|
||||
export default class FeatureToggleClientStore {
|
||||
export default class FeatureToggleClientStore
|
||||
implements IFeatureToggleClientStore
|
||||
{
|
||||
private db: Db;
|
||||
|
||||
private logger: Logger;
|
||||
|
Loading…
Reference in New Issue
Block a user