From 582b46cd398d3c5f15ee30b49067904ffcc7d8ba Mon Sep 17 00:00:00 2001 From: mrjvs Date: Wed, 27 Dec 2023 00:15:02 +0100 Subject: [PATCH] fix type export --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 95fc631..e9b5a6d 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, FetcherResponse } from '@/fetchers/types'; +export type { Fetcher, DefaultedFetcherOptions, FetcherResponse } from '@/fetchers/types'; export type { RunOutput } from '@/runners/runner'; export type { MetaOutput } from '@/entrypoint/utils/meta'; export type { FullScraperEvents } from '@/entrypoint/utils/events';