1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Desktop: Resolves #9693: Allow importing a directory of ENEX files

This commit is contained in:
Laurent Cozic
2024-01-09 22:03:34 +00:00
parent 61a3962eda
commit b2109dab99
9 changed files with 90 additions and 34 deletions

View File

@ -23,7 +23,7 @@ interface BaseMetadata {
isNoteArchive: boolean;
}
interface ImportMetadata extends BaseMetadata {
export interface ImportMetadata extends BaseMetadata {
type: ModuleType.Importer;
format: string;
@ -35,7 +35,7 @@ export interface ImportModule extends ImportMetadata {
factory(options?: ImportOptions): InteropService_Importer_Base;
}
interface ExportMetadata extends BaseMetadata {
export interface ExportMetadata extends BaseMetadata {
type: ModuleType.Exporter;
format: ExportModuleOutputFormat;