@lxlib/seed
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.
21 lines (20 loc) • 612 B
TypeScript
import { ChangeDetectorRef, EventEmitter, OnChanges } from '@angular/core';
import { QRConfig } from './qr.config';
import { QRService } from './qr.service';
export declare class QRComponent implements OnChanges {
private srv;
private cdr;
dataURL: string;
background: string;
backgroundAlpha: number;
foreground: string;
foregroundAlpha: number;
level: string;
mime: string;
padding: number;
size: number;
value: string;
readonly change: EventEmitter<string>;
constructor(cog: QRConfig, srv: QRService, cdr: ChangeDetectorRef);
ngOnChanges(): void;
}