From e5989ffbb0d72dec9bca50ec41c31b2cd94de518 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Sun, 24 Dec 2023 19:48:27 +0100 Subject: [PATCH] Export more useful types --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index ea8b255..d3e310d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +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 { RunOutput } from '@/main/runner'; export type { MetaOutput } from '@/main/meta'; export type { FullScraperEvents } from '@/main/events';