UNPKG

@piggly/fastify-chassis

Version:

An ESM/CommonJS toolkit to help you to do common operations in your back-end applications with Fastify and NodeJS.

11 lines (10 loc) 286 B
/** * Mount an URL based on a base and a relative path. * * @param {string} base * @param {string} relative_path * @returns {string} * @since 1.0.0 * @author Caique Araujo <caique@piggly.com.br> */ export declare const mountURL: (base: string, relative_path: string) => string;