bivcore-insight
Version:
A blockchain explorer for Bitcore
23 lines (20 loc) • 639 B
text/typescript
import { Component, Input } from '@angular/core';
import { ChainNetwork } from '../../providers/api/api';
import { CurrencyProvider } from '../../providers/currency/currency';
/**
* Generated class for the BlockSummaryComponent component.
*
* See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html
* for more info on Angular Components.
*/
({
selector: 'block-summary',
templateUrl: 'block-summary.html'
})
export class BlockSummaryComponent {
()
public block: any = {};
()
public chainNetwork: ChainNetwork;
constructor(public currencyProvider: CurrencyProvider) {}
}