UNPKG

copay-crown

Version:

A Secure Crown Wallet

18 lines (15 loc) 361 B
import { Component, Input } from "@angular/core"; @Component({ selector: 'page-wallet-activity', templateUrl: 'wallet-activity.html', }) export class WalletActivityPage { private _notification: any; @Input() set notification(notification: any) { this._notification = notification; } get notification() { return this._notification; } }