Skip to content

Commit

Permalink
Fix longstanding angular injection warning
Browse files Browse the repository at this point in the history
  • Loading branch information
axdanbol committed Feb 5, 2024
1 parent 318c1dd commit 85ed739
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface CCFDatabaseManager extends Unsubscribable {
}

@Injectable()
abstract class CCFDatabaseDataSourceBaseService extends DelegateDataSource {
export abstract class CCFDatabaseDataSourceBaseService extends DelegateDataSource {
readonly impl$: Observable<DataSourceLike>;
readonly database$: Observable<CCFDatabase | Remote<CCFDatabase>>;

Expand Down
6 changes: 5 additions & 1 deletion libs/ccf-shared/src/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ export * from './lib/components/tracking-popup/tracking-popup.component';
export * from './lib/services/data-source/data-source';
export * from './lib/services/data-source/data-source.service';
export * from './lib/services/data-source/api-endpoint.service';
export * from './lib/services/data-source/ccf-database.service';
export {
CCFDatabaseDataSourceService,
HybridCCfDatabaseDatasourceService,
WorkerCCFDatabaseDataSourceService,
} from './lib/services/data-source/ccf-database.service';
export * from './lib/services/data-source/injector-delegate.service';

export * from './lib/components/call-to-action-behavior/call-to-action-behavior.component';
Expand Down

0 comments on commit 85ed739

Please sign in to comment.