UNPKG

@stacksjs/qrx

Version:

QR & Bar Code generating & reading. Lightweight & powerful.

17 lines (14 loc) 331 B
export declare class ObjectRenderer { object: any encodings: any options: any constructor(object: any, encodings: any, options: any) { this.object = object this.encodings = encodings this.options = options } render(): void { this.object.encodings = this.encodings } } export default ObjectRenderer;