@bolttech/server-side-next
Version:
This library was generated with [Nx](https://nx.dev).
13 lines (12 loc) • 902 B
TypeScript
import { Vertical } from '../../../common/enums';
import { IGetPageNameAndVerticalByPath } from '../../../modules/cms-processwire/types/path-mapper.type';
declare const getPageNameAndVerticalByPath: (path: string, urlMap: any, obj?: {
[key: string]: any;
}) => IGetPageNameAndVerticalByPath;
declare const getFlowAndPartnerByPath: (path: string, urlMap: any, obj?: string | {
[key: string]: any;
}, depth?: number) => Record<string, string> | boolean;
declare const getPage: (source: string, locale: string, page: string, urlMap: any) => string;
declare const getUrl: (page: string, vertical: Vertical, locale: string, source: string, entity: string, query: Record<string, string>, host: string, urlMap: any) => string;
declare const parseUtms: (utms: Record<string, string>) => string;
export { getPageNameAndVerticalByPath, getFlowAndPartnerByPath, getPage, getUrl, parseUtms, };