fix: Export QuickImportResult interface for proper type usage in QuickImportController

This commit is contained in:
Nils-Johan Gynther
2026-04-12 07:44:02 +02:00
parent 4f183df711
commit 23ced5e8ee
2 changed files with 3 additions and 3 deletions
@@ -1,6 +1,6 @@
import { Injectable, BadRequestException } from '@nestjs/common';
interface QuickImportResult {
export interface QuickImportResult {
markdown: string;
source: 'ica' | 'pdf' | 'other';
}