gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
9 lines (8 loc) • 306 B
TypeScript
export declare const ALPHANUMERIC_CHARS = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:";
interface QrcodeOptions {
ecl?: ECL;
}
export type ECL = 'L' | 'M' | 'Q' | 'H';
export declare const ECLList: ECL[];
export declare function qrcode(text: string, options?: QrcodeOptions): number[][];
export {};