Initalize

This commit is contained in:
Your Name
2026-05-03 12:12:57 -04:00
commit 38652eb9b5
10603 changed files with 1762136 additions and 0 deletions

15
node_modules/@vueuse/integrations/dist/useQRCode.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
import * as _$vue from "vue";
import { MaybeRefOrGetter } from "vue";
import QRCode from "qrcode";
//#region useQRCode/index.d.ts
/**
* 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>;
//#endregion
export { useQRCode };