bivcore-insight
Version:
A blockchain explorer for Bitcore
23 lines (20 loc) • 653 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 BlockSummaryEthComponent component.
*
* See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html
* for more info on Angular Components.
*/
({
selector: 'block-summary-eth',
templateUrl: 'block-summary-eth.html'
})
export class BlockSummaryEthComponent {
()
public block: any = {};
()
public chainNetwork: ChainNetwork;
constructor(public currencyProvider: CurrencyProvider) {}
}