From af00bcf7c1c0b578ab12f75441c3dd9c9514fb6b Mon Sep 17 00:00:00 2001 From: mrjvs Date: Tue, 26 Dec 2023 16:24:36 +0100 Subject: [PATCH] export extra fetcher it is --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 347f8dc..95fc631 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ export type { EmbedOutput, SourcererOutput } from '@/providers/base'; export type { Stream, StreamFile, FileBasedStream, HlsBasedStream, Qualities } from '@/providers/streams'; -export type { Fetcher, FetcherOptions } from '@/fetchers/types'; +export type { Fetcher, FetcherOptions, FetcherResponse } from '@/fetchers/types'; export type { RunOutput } from '@/runners/runner'; export type { MetaOutput } from '@/entrypoint/utils/meta'; export type { FullScraperEvents } from '@/entrypoint/utils/events';