UNPKG

axis-core

Version:

A Node.js library written in TypeScript containing shared behavior for the other packages, e.g. code handling communication and authentication with Axis Communication cameras.

6 lines 340 B
import { DeviceRequest } from './DeviceRequest'; type Fetch = (input: string | URL | Request, init?: RequestInit) => Promise<Response>; type DeviceFetch = (input: DeviceRequest, init?: RequestInit) => Promise<Response>; export declare const fetchBuilder: (fetch: Fetch) => DeviceFetch; export {}; //# sourceMappingURL=fetch-builder.d.ts.map