feat: Mission Control dashboard for project management
This commit is contained in:
@@ -2,17 +2,9 @@
|
||||
|
||||
import { useEffect, useMemo, useRef, useState } from "react";
|
||||
|
||||
type SpeechRecognitionInstance = {
|
||||
lang: string;
|
||||
interimResults: boolean;
|
||||
continuous: boolean;
|
||||
onresult: ((event: { results: Array<{ 0?: { transcript?: string } }> }) => void) | null;
|
||||
onerror: ((event: unknown) => void) | null;
|
||||
onend: (() => void) | null;
|
||||
start: () => void;
|
||||
stop: () => void;
|
||||
};
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
type SpeechRecognitionInstance = any;
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
type SpeechRecognitionConstructor = new () => SpeechRecognitionInstance;
|
||||
|
||||
type ChatMessage = {
|
||||
|
||||
Reference in New Issue
Block a user