Files
Fluxup_PAP/node_modules/toqr/dist/toqr.d.ts
2026-03-10 16:18:05 +00:00

10 lines
178 B
TypeScript

declare const enum ECLevel {
M = 0,
L = 1,
H = 2,
Q = 3,
}
declare const toQR: (content: string | Uint8Array, ec?: ECLevel) => Uint8Array<ArrayBuffer>;
export { toQR };