mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 18:13:25 +00:00
Basically library structure
This commit is contained in:
18
src/main/runner.ts
Normal file
18
src/main/runner.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Stream } from '@/providers/streams';
|
||||
|
||||
export type RunOutput = {
|
||||
sourceId: string;
|
||||
fromEmbed: boolean;
|
||||
stream: Stream;
|
||||
};
|
||||
|
||||
export type SourceRunOutput = {
|
||||
sourceId: string;
|
||||
stream?: Stream;
|
||||
embeds: [];
|
||||
};
|
||||
|
||||
export type EmbedRunOutput = {
|
||||
embedId: string;
|
||||
stream?: Stream;
|
||||
};
|
Reference in New Issue
Block a user