MOBILE-3947 core: Fix translate pipe linting
parent
16955c1e56
commit
9a5329cdc3
|
@ -12,7 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
import { Injectable, Pipe } from '@angular/core';
|
import { Injectable, Pipe, PipeTransform } from '@angular/core';
|
||||||
import { TranslatePipe } from '@ngx-translate/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
|
pure: false, // required to update the value when the promise is resolved
|
||||||
standalone: true,
|
standalone: true,
|
||||||
})
|
})
|
||||||
export class TranslatePipeForCompile extends TranslatePipe {}
|
export class TranslatePipeForCompile extends TranslatePipe implements PipeTransform {}
|
||||||
|
|
Loading…
Reference in New Issue