есть такой пайп
import { Pipe, PipeTransform } from '@angular/core'
import * as moment from 'moment'
@Pipe({
name: 'moment'
})
export class MomentPipe implements PipeTransform {
transform(momentObj: moment.Moment, format: string ="MMMM YYYY"): string {
return momentObj.format(format)
}
}
и html компонента
<p>
<i class="material-icons" (click)="month(-1)">arrow_left</i>
<span>
{{date.date | async | moment}}
</span>
<i class="material-icons" (click)="month(1)">arrow_right</i>
</p>
при написании moment в теге спан выдает ошибку TS2345: Argument of type 'Moment | null' is not assignable to parameter of type 'Moment'.
Type 'null' is not assignable to type 'Moment'.
Как пофиксить?