ngx-qrcode-styling
Version:
This library is built for the purpose for generating QR codes with a logo and styling.
23 lines (22 loc) • 612 B
TypeScript
import { AsyncSubject } from 'rxjs';
import { Options } from './ngx-qrcode-styling.options';
/**
* drawQrcode
* @param config
* @param container
* @returns
*/
export declare function drawQrcode(config: Options, container: HTMLElement | HTMLVideoElement | HTMLCanvasElement | SVGElement | any): AsyncSubject<any>;
/**
* defaultTemplate
* @param config
* @returns
*/
export declare const defaultTemplate: (config?: Options) => Options;
/**
* deepUpdate
* @param config
* @param configUpdate
* @returns
*/
export declare const deepUpdate: (config: Options, configUpdate: Options) => Promise<Options>;