From 27ce4d937455f648e6a5d1c8d7ba95c03ac7abe5 Mon Sep 17 00:00:00 2001 From: KaKa <23028015+climba03003@users.noreply.github.com> Date: Sat, 14 Sep 2024 02:14:01 +0800 Subject: [PATCH] feat: export send options (#208) --- packages/abstract-send/lib/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/abstract-send/lib/index.ts b/packages/abstract-send/lib/index.ts index 1bee5194..41bd8f86 100644 --- a/packages/abstract-send/lib/index.ts +++ b/packages/abstract-send/lib/index.ts @@ -46,4 +46,5 @@ export async function send (request: IncomingMessage, requestPath: string, optio } export { isUtf8MimeType, mime } from './mime' +export type { SendOptions } from './options' export type { DirectorySendResult, ErrorSendResult, FileSendResult, SendResult } from './types'