Files
solo-company-feed/types/qrcode.d.ts
爱喝水的木子 02a06ba888 change
2026-03-13 17:13:04 +08:00

16 lines
338 B
TypeScript

declare module "qrcode" {
export type QRCodeToBufferOptions = {
width?: number;
margin?: number;
errorCorrectionLevel?: "L" | "M" | "Q" | "H";
};
export function toBuffer(text: string, options?: QRCodeToBufferOptions): Promise<Buffer>;
const QRCode: {
toBuffer: typeof toBuffer;
};
export default QRCode;
}