Can a third-party library be utilized directly within a component template, rather than just in the component TS file?
I am currently working with the "date-fns" library and I am interested in using it within the template to format dates. For example, I want to use the "format" function from the "date-fns" library like this:
<span class="cell-time-horizon-value">
{{format(session?.timeHorizon.start, "yyyy-MM-dd")}}
</span>