/** * Creates a new URL by combining the baseURL with the requestedURL, * only when the requestedURL is not already an absolute URL. * If the requestURL is absolute, this function returns the requestedURL untouched. * 组合完整的请求路径 * * reference: https://github.com/axios/axios/blob/v1.x/lib/core/buildFullPath.js */ export declare const buildFullURL: (baseURL?: string, pathURL?: string, params?: Record) => string;