insight-tcr
Version:
A blockchain explorer for Bitcore
40 lines (30 loc) • 711 B
text/typescript
import { ViewEncapsulation } from "@angular/compiler/src/core";
import { Component, Input, OnInit } from "@angular/core";
export enum CardItemType {
forward = 'forward',
back = 'back',
expandCollapse = 'expand-collapse',
none = 'none'
}
export class CardItemComponent implements OnInit {
CardItemType = CardItemType;
header = '';
headerEquivalent = '';
headerCount = '';
headerSum = '';
type: CardItemType = CardItemType.none;
isOpen = false;
constructor() {}
ngOnInit() {}
}