UNPKG

fetchero

Version:

_A type-safe, proxy-based HTTP & GraphQL client for modern applications._

10 lines (9 loc) 249 B
/** * Utility class for URL construction */ export declare class URLBuilder { /** * Builds URL with segments and query parameters */ static build(base: string, segments: string[], query?: Record<string, any>): string; }