@evan.network/ui-angular-core
Version:
The angular-core operates as an global and central library for the evan.network Angular 5 frontend development. Using this project you will be able to to the following things:
40 lines (39 loc) • 1.46 kB
TypeScript
import { ChangeDetectorRef } from 'angular-libs';
import { AsyncComponent } from '../../classes/AsyncComponent';
import { EvanVerificationService } from '../../services/bcc/verifications';
import { EvanCoreService } from '../../services/bcc/core';
import { EvanQueue } from '../../services/bcc/queue';
/**************************************************************************************************/
/**
* Display all for the user configured active verifications for a specific topic.
*/
export declare class EvanProfileVerificationsComponent extends AsyncComponent {
private verificationsService;
private core;
private queueService;
private ref;
/***************** inputs & outpus *****************/
/**
* address that for that the verifications should be checked
*/
address: string;
/**
* display mode that should be used (minimal, detail, full)
*/
mode: any;
/***************** variables *****************/
/**
* for the current profile activated verifications
*/
private verifications;
/**
* Function to unsubscribe from profile verifications watcher queue results.
*/
private profileVerificationsWatcher;
constructor(verificationsService: EvanVerificationService, core: EvanCoreService, queueService: EvanQueue, ref: ChangeDetectorRef);
_ngOnInit(): Promise<void>;
/**
* Clear the queue
*/
_ngOnDestroy(): Promise<void>;
}