@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:
37 lines (36 loc) • 1.02 kB
TypeScript
import { ElementRef, ChangeDetectorRef, AfterViewInit } from 'angular-libs';
import { EvanUtilService } from '../../services/utils';
/**************************************************************************************************/
/**
* QR-Code display component
*
* @class Component ListPagingComponent
*/
export declare class QrCodeComponent implements AfterViewInit {
private ref;
private utils;
/***************** inputs & outpus *****************/
/**
* text to generate the qr-code for
*/
text: number;
/**
* width of the qr-code
*/
width: number;
/**
* height of the qr-code
*/
height: number;
/***************** variables *****************/
/**
* blockie element references
*/
$qrCode: ElementRef;
/***************** initialization *****************/
constructor(ref: ChangeDetectorRef, utils: EvanUtilService);
/**
* render the qr-code
*/
ngAfterViewInit(): Promise<void>;
}