Reviewing the code for the angular-svg-round-progressbar component. The module definition exports the class for the RoundProgressModule
, but also exports the services (etc) that it uses like this:
export * from './round-progress.component';
export * from './round-progress.service';
export * from './round-progress.ease';
export * from './round-progress.config';
Is this necessary?