<div *ngIf="!hoge?.length > 0">
ERROR in hoge.html(123,456): Operator '>' cannot be applied to types 'boolean' and 'number'.
Oh...
#解決
<div *ngIf="!(hoge?.length > 0)">
#参考
https://stackoverflow.com/questions/45974764/operator-cannot-be-applied-to-types-boolean-and-number