UNPKG

@stacksjs/qrx

Version:

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

13 lines (11 loc) 236 B
export declare class Barcode { data: string text: string options: any constructor(data: string, options: any) { this.data = data this.text = options.text || data this.options = options } } export default Barcode;