mirror of
https://github.com/p-stream/providers.git
synced 2026-01-11 20:10:33 +00:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import { makeProviders, makeStandardFetcher, targets } from '../../lib/index.js';
|
|
|
|
(window as any).TEST = () => {
|
|
makeProviders({
|
|
fetcher: makeStandardFetcher(fetch),
|
|
target: targets.ANY,
|
|
});
|
|
}
|