UNPKG

cdn-resolve

Version:

Resolves import paths to their CDN equivalents

9 lines 299 B
//#region src/jsdelivr.d.ts /** * Builds a JSDelivr URL for the specified module. * @param {string} module - The name of the module. * @returns {URL} The JSDelivr URL for the module. */ declare function buildJSDelivrUrl(module: string): URL | undefined; //#endregion export { buildJSDelivrUrl };