mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-16 11:23:10 +02:00
Change to use dpdm for circular import scanning (#5788)
Co-authored-by: Anthony Stirling <[email protected]>
This commit is contained in:
co-authored by
Anthony Stirling
parent
1b3bfaec20
commit
eab84a13d0
@@ -1,5 +1,5 @@
|
||||
import { openFileDialog } from '@app/services/fileDialogService';
|
||||
import { pendingFilePathMappings } from '@app/contexts/FileManagerContext';
|
||||
import { pendingFilePathMappings } from '@app/services/pendingFilePathMappings';
|
||||
import { getDocumentFileDialogFilter } from '@app/utils/fileDialogUtils';
|
||||
|
||||
interface OpenFilesFromDiskOptions {
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
// Module-level storage for file path mappings (quickKey -> localFilePath)
|
||||
// Used to pass file paths from Tauri file dialog to FileManagerContext
|
||||
export const pendingFilePathMappings = new Map<string, string>();
|
||||
@@ -1,5 +1,5 @@
|
||||
import apiClient from '@app/services/apiClient';
|
||||
import type { SavedSignature } from '@app/hooks/tools/sign/useSavedSignatures';
|
||||
import type { SavedSignature } from '@app/types/signature';
|
||||
|
||||
export type StorageType = 'backend' | 'localStorage';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user