Files

15 lines
358 B
TypeScript
Raw Permalink Normal View History

2025-07-26 16:40:29 +08:00
import * as vue from 'vue';
import { MaybeRefOrGetter } from 'vue';
import QRCode from 'qrcode';
/**
* Wrapper for qrcode.
*
* @see https://vueuse.org/useQRCode
* @param text
* @param options
*/
declare function useQRCode(text: MaybeRefOrGetter<string>, options?: QRCode.QRCodeToDataURLOptions): vue.ShallowRef<string, string>;
export { useQRCode };