From a1d1f070cf8b029dfcba68593ee245ec87d977e5 Mon Sep 17 00:00:00 2001 From: patrick Date: Wed, 13 May 2026 18:11:23 -0400 Subject: [PATCH] chore: export processing functions Co-Authored-By: Claude --- src/lib/index.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/lib/index.ts b/src/lib/index.ts index 8bab49b..edcdb22 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -1,5 +1,18 @@ // Data export { PRESET_DEVICES, DEFAULT_DEVICE, groupDevicesByBrand } from './data/devices'; +// Processing +export { + processImage, + processImageWithPreview, + processImageWithPipeline, + ensurePhotonReady, + getOutputFilename, + createZipArchive, + downloadFile, + downloadImage, + downloadAllAsZip +} from './processing/pipeline'; + // Types export * from './types';