@bolttech/server-side-next
Version:
This library was generated with [Nx](https://nx.dev).
14 lines (13 loc) • 558 B
TypeScript
/// <reference types="node" />
import { UrlWithParsedQuery } from 'url';
export declare const urlFilter: (url: string) => boolean;
export declare const urlMapper: (url: string) => string;
export declare const urlEncode: (url: string) => string;
export declare function urlParse(originalUrl?: string, baseUrl?: string): UrlWithParsedQuery;
declare const _default: {
urlFilter: (url: string) => boolean;
urlMapper: (url: string) => string;
urlEncode: (url: string) => string;
urlParse: typeof urlParse;
};
export default _default;