Skip to content

Commit

Permalink
fix: Add PracticeImpact types
Browse files Browse the repository at this point in the history
  • Loading branch information
adelkahomolova committed Oct 25, 2019
1 parent b011e5f commit 28ac483
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/contexts/ConfigProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import _ from 'lodash';
import { IFileInspector } from '../inspectors/IFileInspector';
import { Types } from '../types';
import { IConfigProvider, Config, PracticeConfig } from './IConfigProvider';
import { PracticeImpact } from '../model';

@injectable()
export class ConfigProvider implements IConfigProvider {
Expand Down Expand Up @@ -45,7 +46,7 @@ export class ConfigProvider implements IConfigProvider {
}

return {
impact: practiceConfig,
impact: <PracticeImpact>practiceConfig,
};
}
}

0 comments on commit 28ac483

Please sign in to comment.