Skip to content

Commit

Permalink
feat(category): add injection token types (#1229)
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 authored and damienwebdev committed Jan 20, 2021
1 parent f8f8756 commit 3fd50a3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { InjectionToken } from '@angular/core';

export const DaffCategoryDriver = new InjectionToken('DaffCategoryDriver');
import { DaffCategoryServiceInterface } from '../interfaces/category-service.interface';

export const DaffCategoryDriver = new InjectionToken<DaffCategoryServiceInterface>('DaffCategoryDriver');

0 comments on commit 3fd50a3

Please sign in to comment.