UNPKG

@remcostoeten/fync

Version:

A unified TypeScript library for easy access to popular APIs (GitHub, Spotify, GitLab, etc.)

10 lines 429 B
import { type TBaseConfig, type TChainableClient } from "../../core/chainable"; type TNpmClientConfig = TBaseConfig & { userAgent?: string; timeout?: number; }; declare function createNpmClient(config?: TNpmClientConfig): TChainableClient; export { createNpmClient }; export type { TNpmClientConfig, TChainableClient }; export type { TRequestOptions } from "../../core/chainable"; //# sourceMappingURL=npm-client.d.ts.map