optimize song usage

This commit is contained in:
2026-03-15 13:19:20 +01:00
parent d907c89eb6
commit ab535d48b9
21 changed files with 312 additions and 29 deletions
+20
View File
@@ -0,0 +1,20 @@
declare module 'qrcode' {
export interface QRCodeToDataURLOptions {
type?: string;
quality?: number;
width?: number;
height?: number;
color?: {
dark?: string;
light?: string;
};
}
export function toDataURL(text: string, options?: QRCodeToDataURLOptions): Promise<string>;
const QRCode: {
toDataURL: typeof toDataURL;
};
export default QRCode;
}