UNPKG

@vicary/alpaca-sdk

Version:

A TypeScript SDK for the https://alpaca.markets REST API and WebSocket streams.

5 lines 276 B
/// <reference types="node" /> export type MockResponse = Response | object | string; export type MockFetch = (url: string, init?: RequestInit) => Promise<Response>; export declare const mockFetch: (response: MockResponse) => MockFetch; //# sourceMappingURL=mockFetch.d.ts.map