Update debug tab to check against fork

This commit is contained in:
Stijnus
2024-12-13 09:17:35 +01:00
parent 49e6c8034d
commit b16aab1f16
3 changed files with 500 additions and 47 deletions

View File

@@ -3,3 +3,11 @@ interface Window {
webkitSpeechRecognition: typeof SpeechRecognition;
SpeechRecognition: typeof SpeechRecognition;
}
interface Performance {
memory?: {
jsHeapSizeLimit: number;
totalJSHeapSize: number;
usedJSHeapSize: number;
};
}