mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 18:13:25 +00:00
20 lines
781 B
TypeScript
20 lines
781 B
TypeScript
export type { EmbedOutput, SourcererOutput } from '@/providers/base';
|
|
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';
|