dirkx / base45-js

Base45 (for QR and Aztec barcode alphanumeric mode) library for Javascript/JS/node
2 stars 15 forks source link

wrong index.ds.ts not usable for typescript projects #4

Open a-trzewik opened 3 years ago

a-trzewik commented 3 years ago

The included index.ds.ts file is not usable to use it directly in typescript projects

following content will work

export function encode(buffer: ArrayBuffer): string; export function decode(str: string): ArrayBuffer;