Refactor imports across multiple components for consistency and clarity

- Reorganized import statements in various components to ensure consistent ordering and grouping.
- Removed unnecessary imports and added missing ones where applicable.
- Improved readability and maintainability of the codebase by standardizing import styles.
This commit is contained in:
Tunglies
2025-09-19 00:01:04 +08:00
parent 627119bb22
commit e414b49879
41 changed files with 444 additions and 132 deletions

View File

@@ -39,7 +39,7 @@ export function recordTrafficError(error: Error, component: string) {
*/
function getMemoryUsage(): number {
if ("memory" in performance) {
// @ts-ignore - 某些浏览器支持
// @@ts-expect-error - 某些浏览器支持
const memory = (performance as any).memory;
if (memory && memory.usedJSHeapSize) {
return memory.usedJSHeapSize / 1024 / 1024; // 转换为MB