angular-qrious
Version:
19 lines (18 loc) • 502 B
TypeScript
import { OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import QRious from 'qrious';
export declare class QrCodeComponent implements OnChanges, OnDestroy {
background: string;
backgroundAlpha: number;
foreground: string;
foregroundAlpha: number;
level: string;
mime: string;
padding: any;
size: number;
value: string;
private element;
qrious: QRious;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;
update(): void;
}