From 8e0e776916178aa0307eea3bc14d23b7c132a7ec Mon Sep 17 00:00:00 2001 From: Peter Lauck Date: Mon, 11 Jan 2021 11:24:37 -0500 Subject: [PATCH] feat(product): add injection token types (#1229) --- .../src/drivers/injection-tokens/product-driver.token.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/product/src/drivers/injection-tokens/product-driver.token.ts b/libs/product/src/drivers/injection-tokens/product-driver.token.ts index ef3aeb1ce0..8f6d8eb77b 100644 --- a/libs/product/src/drivers/injection-tokens/product-driver.token.ts +++ b/libs/product/src/drivers/injection-tokens/product-driver.token.ts @@ -1,8 +1,9 @@ import { InjectionToken } from '@angular/core'; + import { DaffProductServiceInterface } from '../interfaces/product-service.interface'; /** * Injection token that serves as a placeholder for any service that implements the DaffProductServiceInterface. */ -export const DaffProductDriver = - new InjectionToken>('DaffProductDriver'); +export const DaffProductDriver = + new InjectionToken('DaffProductDriver');