Files
paseo/packages/app/src/utils/encode-images.ts
2026-03-21 20:22:15 +07:00

11 lines
349 B
TypeScript

import type { AttachmentMetadata } from "@/attachments/types";
import { encodeAttachmentsForSend } from "@/attachments/service";
type ImageInput = AttachmentMetadata;
export async function encodeImages(
images?: ImageInput[],
): Promise<Array<{ data: string; mimeType: string }> | undefined> {
return await encodeAttachmentsForSend(images);
}