From 9a5329cdc35ad2614e877e2af75625e29530ae46 Mon Sep 17 00:00:00 2001 From: Noel De Martin Date: Wed, 29 Nov 2023 12:44:18 +0100 Subject: [PATCH] MOBILE-3947 core: Fix translate pipe linting --- src/core/features/compile/pipes/translate.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/features/compile/pipes/translate.ts b/src/core/features/compile/pipes/translate.ts index 3cf15adbd..86e1ac728 100644 --- a/src/core/features/compile/pipes/translate.ts +++ b/src/core/features/compile/pipes/translate.ts @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import { Injectable, Pipe } from '@angular/core'; +import { Injectable, Pipe, PipeTransform } from '@angular/core'; import { TranslatePipe } from '@ngx-translate/core'; /** @@ -25,4 +25,4 @@ import { TranslatePipe } from '@ngx-translate/core'; pure: false, // required to update the value when the promise is resolved standalone: true, }) -export class TranslatePipeForCompile extends TranslatePipe {} +export class TranslatePipeForCompile extends TranslatePipe implements PipeTransform {}