@remcostoeten/fync
Version:
A unified TypeScript library for easy access to popular APIs (GitHub, Spotify, GitLab, etc.)
18 lines • 546 B
TypeScript
export * from "./cache";
export * from "./errors/exports";
export * from "./http";
export * from "./response";
export * from "./types";
/**
* Package version - should be updated via build script or CI/CD
* TODO: Consider using a build-time replacement or dynamic import
*/
export declare const version = "3.4.0";
export declare const userAgent = "@remcostoeten/fync/3.4.0";
export type TCoreConfig = {
baseURL?: string;
timeout?: number;
headers?: Record<string, string>;
cache?: boolean;
};
//# sourceMappingURL=index.d.ts.map