@remcostoeten/fync
Version:
A unified TypeScript library for easy access to popular APIs (GitHub, Spotify, GitLab, etc.)
9 lines • 421 B
TypeScript
import { type TBaseConfig, type TChainableClient } from "../../core/chainable";
type TGitHubClientConfig = TBaseConfig & {
token?: string;
};
declare function createGitHubClient(config?: TGitHubClientConfig): TChainableClient;
export { createGitHubClient };
export type { TGitHubClientConfig, TChainableClient };
export type { TRequestOptions } from "../../core/chainable";
//# sourceMappingURL=github-client.d.ts.map