Angular 8 Cómo iterar el objeto json a la vista

<div *ngFor="let item of object | keyvalue">
      {{item.key}}:{{item.value}}
    </div>
Rich Ratel