mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-09-20 08:02:19 +02:00
release: prepare v0.9.7
This commit is contained in:
Vendored
+18
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user