Enforce node: schema for builtins, import extensions

This commit is contained in:
Fedor Indutny 2025-09-16 17:39:03 -07:00 committed by GitHub
commit c02565eaa8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2096 changed files with 14955 additions and 14023 deletions

View file

@ -4,18 +4,18 @@
import type { MouseEvent } from 'react';
import React, { useEffect, useState } from 'react';
import copyText from 'copy-text-to-clipboard';
import type { LocalizerType } from '../types/Util';
import * as Errors from '../types/errors';
import type { AnyToast } from '../types/Toast';
import { ToastType } from '../types/Toast';
import { createLogger } from '../logging/log';
import { Button, ButtonVariant } from './Button';
import { Spinner } from './Spinner';
import { ToastManager } from './ToastManager';
import { createSupportUrl } from '../util/createSupportUrl';
import { shouldNeverBeCalled } from '../util/shouldNeverBeCalled';
import { openLinkInWebBrowser } from '../util/openLinkInWebBrowser';
import { useEscapeHandling } from '../hooks/useEscapeHandling';
import type { LocalizerType } from '../types/Util.js';
import * as Errors from '../types/errors.js';
import type { AnyToast } from '../types/Toast.js';
import { ToastType } from '../types/Toast.js';
import { createLogger } from '../logging/log.js';
import { Button, ButtonVariant } from './Button.js';
import { Spinner } from './Spinner.js';
import { ToastManager } from './ToastManager.js';
import { createSupportUrl } from '../util/createSupportUrl.js';
import { shouldNeverBeCalled } from '../util/shouldNeverBeCalled.js';
import { openLinkInWebBrowser } from '../util/openLinkInWebBrowser.js';
import { useEscapeHandling } from '../hooks/useEscapeHandling.js';
const log = createLogger('DebugLogWindow');