mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 16:33:26 +00:00
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
import { makeProviders, makeStandardFetcher, targets } from '../../lib/index.mjs';
|
|
|
|
(window as any).TEST = () => {
|
|
makeProviders({
|
|
fetcher: makeStandardFetcher(fetch),
|
|
target: targets.ALL,
|
|
});
|
|
}
|