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

@ -3,23 +3,23 @@
import React, { useState, useCallback } from 'react';
import type { LocalizerType } from '../../types/Util';
import type { UpdatesStateType } from '../../state/ducks/updates';
import type { LocalizerType } from '../../types/Util.js';
import type { UpdatesStateType } from '../../state/ducks/updates.js';
import {
InstallScreenStep,
InstallScreenBackupStep,
InstallScreenBackupError,
} from '../../types/InstallScreen';
import { formatFileSize } from '../../util/formatFileSize';
import { TitlebarDragArea } from '../TitlebarDragArea';
import { ProgressBar } from '../ProgressBar';
import { ConfirmationDialog } from '../ConfirmationDialog';
import { InstallScreenSignalLogo } from './InstallScreenSignalLogo';
import { roundFractionForProgressBar } from '../../util/numbers';
import { missingCaseError } from '../../util/missingCaseError';
import { SYNCING_MESSAGES_SECURITY_URL } from '../../types/support';
import { I18n } from '../I18n';
import { InstallScreenUpdateDialog } from './InstallScreenUpdateDialog';
} from '../../types/InstallScreen.js';
import { formatFileSize } from '../../util/formatFileSize.js';
import { TitlebarDragArea } from '../TitlebarDragArea.js';
import { ProgressBar } from '../ProgressBar.js';
import { ConfirmationDialog } from '../ConfirmationDialog.js';
import { InstallScreenSignalLogo } from './InstallScreenSignalLogo.js';
import { roundFractionForProgressBar } from '../../util/numbers.js';
import { missingCaseError } from '../../util/missingCaseError.js';
import { SYNCING_MESSAGES_SECURITY_URL } from '../../types/support.js';
import { I18n } from '../I18n.js';
import { InstallScreenUpdateDialog } from './InstallScreenUpdateDialog.js';
// We can't always use destructuring assignment because of the complexity of this props
// type.