mirror of
https://github.com/sussy-code/providers.git
synced 2026-03-16 07:46:37 +00:00
21 lines
953 B
TypeScript
21 lines
953 B
TypeScript
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';
|
|
export type { Targets, Flags } from '@/main/targets';
|
|
export type { MediaTypes, ShowMedia, ScrapeMedia, MovieMedia } from '@/main/media';
|
|
export type {
|
|
ProviderBuilderOptions,
|
|
ProviderControls,
|
|
RunnerOptions,
|
|
EmbedRunnerOptions,
|
|
SourceRunnerOptions,
|
|
} from '@/main/builder';
|
|
|
|
export { NotFoundError } from '@/utils/errors';
|
|
export { makeProviders } from '@/main/builder';
|
|
export { makeStandardFetcher } from '@/fetchers/standardFetch';
|
|
export { makeSimpleProxyFetcher } from '@/fetchers/simpleProxy';
|
|
export { flags, targets } from '@/main/targets';
|