Skip to content

Commit

Permalink
feat: Add Kissasian.mx provider (#367)
Browse files Browse the repository at this point in the history
* feat: Add kissasian provider

* Update kissasian

* Add streamwish extractor

* Add mp4upload provider

* [CodeFactor] Apply fixes

* Update dist

* Update imports

---------

Co-authored-by: codefactor-io <[email protected]>
  • Loading branch information
Raghav1729 and code-factor authored Jul 24, 2023
1 parent da0e26a commit 240929f
Show file tree
Hide file tree
Showing 52 changed files with 1,022 additions and 208 deletions.
23 changes: 13 additions & 10 deletions dist/extractors/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
import AsianLoad from './asianload';
import BilibiliExtractor from './bilibili';
import Filemoon from './filemoon';
import GogoCDN from './gogocdn';
import StreamSB from './streamsb';
import VidCloud from './vidcloud';
import MixDrop from './mixdrop';
import Kwik from './kwik';
import MixDrop from './mixdrop';
import Mp4Upload from './mp4upload';
import RapidCloud from './rapidcloud';
import StreamTape from './streamtape';
import VizCloud from './vizcloud';
import Filemoon from './filemoon';
import BilibiliExtractor from './bilibili';
import AsianLoad from './asianload';
import StreamLare from './streamlare';
import SmashyStream from './smashystream';
import StreamHub from './streamhub';
export { GogoCDN, StreamSB, VidCloud, MixDrop, Kwik, RapidCloud, StreamTape, VizCloud, Filemoon, BilibiliExtractor, AsianLoad, StreamHub, StreamLare, SmashyStream, };
import StreamLare from './streamlare';
import StreamSB from './streamsb';
import StreamTape from './streamtape';
import StreamWish from './streamwish';
import VidCloud from './vidcloud';
import VidMoly from './vidmoly';
import VizCloud from './vizcloud';
export { AsianLoad, BilibiliExtractor, Filemoon, GogoCDN, Kwik, MixDrop, Mp4Upload, RapidCloud, SmashyStream, StreamHub, StreamLare, StreamSB, StreamTape, StreamWish, VidCloud, VidMoly, VizCloud, };
44 changes: 25 additions & 19 deletions dist/extractors/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/extractors/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions dist/extractors/mp4upload.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { VideoExtractor, IVideo } from '../models';
declare class Mp4Upload extends VideoExtractor {
protected serverName: string;
protected sources: IVideo[];
extract: (videoUrl: URL) => Promise<IVideo[]>;
}
export default Mp4Upload;
34 changes: 34 additions & 0 deletions dist/extractors/mp4upload.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/extractors/mp4upload.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions dist/extractors/streamhub.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/extractors/streamhub.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions dist/extractors/streamwish.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { VideoExtractor, IVideo } from '../models';
declare class StreamWish extends VideoExtractor {
protected serverName: string;
protected sources: IVideo[];
extract: (videoUrl: URL) => Promise<IVideo[]>;
}
export default StreamWish;
51 changes: 51 additions & 0 deletions dist/extractors/streamwish.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/extractors/streamwish.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions dist/extractors/vidmoly.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { VideoExtractor, IVideo } from '../models';
declare class VidMoly extends VideoExtractor {
protected serverName: string;
protected sources: IVideo[];
extract: (videoUrl: URL) => Promise<IVideo[]>;
}
export default VidMoly;
Loading

0 comments on commit 240929f

Please sign in to comment.