fetch.d.ts 195 B

1234
  1. import { FetchConnector } from '../spec';
  2. import { DataComponent as DC } from '../runtime';
  3. export type FetchOptions = Omit<FetchConnector, 'type'>;
  4. export declare const Fetch: DC<FetchOptions>;