/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import {Component} from '@angular/core'; // #docregion KeyValuePipe @Component({ selector: 'keyvalue-pipe', template: `

Object

{{item.key}}:{{item.value}}

Map

{{item.key}}:{{item.value}}
` }) export class KeyValuePipeComponent { object: {[key: number]: string} = {2: 'foo', 1: 'bar'}; map = new Map([[2, 'foo'], [1, 'bar']]); } // #enddocregion