@reactuses/core
Version:
<p align="center"> <a href="https://github.com/childrentime/reactuse"> <img src="https://reactuse.com/img/og.png" alt="ReactUse - Collection of essential React Hooks" width="300"> </a> </p>
41 lines (37 loc) • 845 B
text/typescript
import QRCode, { QRCodeToDataURLOptions } from 'qrcode';
/**
* @title UseQRCode
*/
type UseQRCode = (
/**
* @zh 文本
* @zh-Hant 文本
* @en Text
*/
text: string,
/**
* @zh 传递给 `QRCode.toDataURL` 的选项
* @zh-Hant 傳遞給 `QRCode.toDataURL` 的選項
* @en Options passed to `QRCode.toDataURL`
*/
options?: QRCodeToDataURLOptions) => UseQRCodeReturn;
/**
* @title UseQRCodeReturn
*/
interface UseQRCodeReturn {
/**
* @zh 生成的二维码
* @zh-Hant 生成的二維碼
* @en Generated QR code
*/
qrCode: string;
/**
* @zh 错误
* @zh-Hant 錯誤
* @en Error
*/
error: unknown;
}
declare function generateQRCode(text: string, options?: QRCode.QRCodeToDataURLOptions): Promise<string>;
declare const useQRCode: UseQRCode;
export { generateQRCode, useQRCode };