Imagine the following string enum, which is defined in a component.ts:
export enum SortType {
 Date = 'date',
}
I want to use the value of the enum in the corresponding HTML-component: <th mat-sort-header=??? >
Something like that: <th mat-sort-header='SortType.Date' >.


