Skip to content

Commit

Permalink
export as named instead of default
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswk committed Apr 18, 2024
1 parent 7be1aee commit 61b6ceb
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,6 +1,6 @@
import type { Db } from '../../db/db';
import type { IUnleashConfig } from '../../types';
import ExportImportService from './export-import-service';
import { ExportImportService } from './export-import-service';
import { ImportTogglesStore } from './import-toggles-store';
import FeatureToggleStore from '../feature-toggle/feature-toggle-store';
import TagStore from '../../db/tag-store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ export type IExportService = {
): Promise<ExportResultSchema>;
};

export default class ExportImportService
implements IExportService, IImportService
{
export class ExportImportService implements IExportService, IImportService {
private logger: Logger;

private toggleStore: IFeatureToggleStore;
Expand Down

0 comments on commit 61b6ceb

Please sign in to comment.