mirror of
https://github.com/coleam00/bolt.new-any-llm
synced 2024-12-27 22:33:03 +00:00
14 lines
313 B
TypeScript
14 lines
313 B
TypeScript
interface Window {
|
|
showDirectoryPicker(): Promise<FileSystemDirectoryHandle>;
|
|
webkitSpeechRecognition: typeof SpeechRecognition;
|
|
SpeechRecognition: typeof SpeechRecognition;
|
|
}
|
|
|
|
interface Performance {
|
|
memory?: {
|
|
jsHeapSizeLimit: number;
|
|
totalJSHeapSize: number;
|
|
usedJSHeapSize: number;
|
|
};
|
|
}
|