Skip to content

Commit

Permalink
Remove AppChinaProvider from providers list and update Provider type …
Browse files Browse the repository at this point in the history
…definition
  • Loading branch information
mnixry committed Feb 14, 2025
1 parent cb3a821 commit 99f77db
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/provider/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ import { AppChinaProvider } from "./appchina";
import { QQDownloaderProvider } from "./qqdownloader";
export * from "./provider";

export const providers = [AppChinaProvider, QQDownloaderProvider] as const;
export type Provider = typeof providers[number];
export const providers = [
//AppChinaProvider,
QQDownloaderProvider,
] as const;
export type Provider = (typeof providers)[number];

0 comments on commit 99f77db

Please sign in to comment.