release: prepare v0.9.7

This commit is contained in:
BigBodyCobain
2026-05-01 22:56:50 -06:00
parent ea457f27da
commit 28b3bd5ebf
670 changed files with 187059 additions and 14005 deletions
+18
View File
@@ -1,5 +1,23 @@
declare module '@mapbox/point-geometry';
declare module 'mapbox__point-geometry';
declare module 'qrcode' {
interface QRCodeToDataURLOptions {
errorCorrectionLevel?: 'L' | 'M' | 'Q' | 'H';
margin?: number;
width?: number;
color?: {
dark?: string;
light?: string;
};
}
interface QRCodeModule {
toDataURL(text: string, options?: QRCodeToDataURLOptions): Promise<string>;
}
const QRCode: QRCodeModule;
export default QRCode;
}
interface Window {
__SHADOWBROKER_DESKTOP__?: import('@/lib/desktopBridge').ShadowbrokerDesktopRuntime;